Skip to content

Commit

Permalink
docs(v1.5.3): 更新版本号
Browse files Browse the repository at this point in the history
  • Loading branch information
liangdas committed Sep 9, 2024
1 parent d5761a1 commit a530a28
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions gate/base/mqtt/mqtt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
Expand Down Expand Up @@ -32,7 +32,7 @@ func TestConnet(t *testing.T) {
}
r := bufio.NewReader(conn)
w := bufio.NewWriter(conn)
pack, err := ReadPack(r)
pack, err := ReadPack(r, 2048)
if err != nil {
t.Fatal(err)
}
Expand Down Expand Up @@ -70,7 +70,7 @@ func TestConnet(t *testing.T) {
return
}

if _, err := ReadPack(r); err != nil {
if _, err := ReadPack(r, 2048); err != nil {
t.Error(err)
}
}
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package mqant

const version = "1.4.14"
const version = "1.5.3"

0 comments on commit a530a28

Please sign in to comment.