From 982d1a7840b86813c452728a6e80e1593acc98c0 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Thu, 4 Nov 2021 16:02:54 +0600 Subject: [PATCH] prep release --- .github/workflows/linux.yml | 10 +++++----- CHANGES.md | 4 ++++ Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 613fedf7..76795feb 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -8,7 +8,7 @@ jobs: fail-fast: false matrix: version: - - 1.51.0 # MSRV + - 1.53.0 # MSRV - stable - nightly @@ -49,7 +49,7 @@ jobs: key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-cargo-build-trimmed-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo tarpaulin - if: matrix.version == '1.51.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') + if: matrix.version == '1.53.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') uses: actions/cache@v1 with: path: ~/.cargo/bin @@ -63,19 +63,19 @@ jobs: args: --all --all-features --no-fail-fast -- --nocapture - name: Install tarpaulin - if: matrix.version == '1.51.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') + if: matrix.version == '1.53.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') continue-on-error: true run: | cargo install cargo-tarpaulin - name: Generate coverage report - if: matrix.version == '1.51.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') + if: matrix.version == '1.53.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') continue-on-error: true run: | cargo tarpaulin --out Xml --all --all-features - name: Upload to Codecov - if: matrix.version == '1.51.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') + if: matrix.version == '1.53.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') continue-on-error: true uses: codecov/codecov-action@v1 with: diff --git a/CHANGES.md b/CHANGES.md index 74f62b3b..93a64187 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.7.5] - 2021-11-04 + +* v5: Use variable length byte to encode the subscription ID #73 + ## [0.7.4] - 2021-10-29 * Expose some control plane type constructors diff --git a/Cargo.toml b/Cargo.toml index bd34f956..a5879fd8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-mqtt" -version = "0.7.4" +version = "0.7.5" authors = ["ntex contributors "] description = "Client and Server framework for MQTT v5 and v3.1.1 protocols" documentation = "https://docs.rs/ntex-mqtt"