Skip to content

Commit

Permalink
Merge pull request #346 from jpculp/coldsnap-0.6.2
Browse files Browse the repository at this point in the history
Prepare for v0.6.2 release
  • Loading branch information
jpculp authored Aug 2, 2024
2 parents b0d1d67 + f3dde9e commit 4ec8ade
Show file tree
Hide file tree
Showing 7 changed files with 335 additions and 325 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:
key: ${{ hashFiles('.github/cache_bust') }}-${{ hashFiles('.github/workflows/rust.yml') }}-${{ runner.os }}-${{ matrix.features }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ hashFiles('.github/cache_bust') }}-${{ hashFiles('.github/workflows/rust.yml') }}-${{ runner.os }}-${{ matrix.features }}
- run: rustup default 1.71.1
- run: rustup default
- run: rustup component add rustfmt
- run: rustup component add clippy
- run: cargo test --features ${{ matrix.features }} ${{ matrix.additional_flags }} --locked
- run: cargo build --features ${{ matrix.features }} ${{ matrix.additional_flags }} --locked
- run: cargo clippy --features ${{ matrix.features }} ${{ matrix.additional_flags }} --locked -- -D warnings --no-deps
- run: cargo fmt -- --check
- run: cargo install --version 0.14.1 cargo-deny --locked
- run: cargo install --version 0.14.24 cargo-deny --locked
- run: cargo deny --features ${{ matrix.features }} --no-default-features check --disable-fetch licenses bans sources
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.6.2] - 2024-08-01
### Changed
- Dependency updates [#346]

## [0.6.1] - 2024-03-15
### Changed
- Dependency updates
- Improve performance of an atomic lock (thanks @wang384670111) [#309]

[#309]: https://github.com/awslabs/coldsnap/pull/309

## [0.6.0] - 2023-08-22
### Security Fix
- Bump openssl from 0.10.48 to 0.10.55 [#257], [#271]
Expand Down Expand Up @@ -91,7 +93,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Everything!

[Unreleased]: https://github.com/awslabs/coldsnap/compare/v0.6.1...develop
[Unreleased]: https://github.com/awslabs/coldsnap/compare/v0.6.2...develop
[0.6.2]: https://github.com/awslabs/coldsnap/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/awslabs/coldsnap/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/awslabs/coldsnap/compare/v0.5.1...v0.6.0
[0.5.1]: https://github.com/awslabs/coldsnap/compare/v0.5.0...v0.5.1
Expand Down Expand Up @@ -174,4 +177,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#247]: https://github.com/awslabs/coldsnap/pull/247
[#257]: https://github.com/awslabs/coldsnap/pull/257
[#271]: https://github.com/awslabs/coldsnap/pull/271
[#309]: https://github.com/awslabs/coldsnap/pull/309
[#346]: https://github.com/awslabs/coldsnap/pull/346

Loading

0 comments on commit 4ec8ade

Please sign in to comment.