Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #38

Merged
merged 1 commit into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,25 @@ and this project adheres to

## [Unreleased]

## [0.7.1](https://github.com/pace-rs/pace/compare/pace-rs-v0.7.0...pace-rs-v0.7.1) - 2024-02-22

### Fixed
- *(deps)* update serde monorepo to 1.0.197 ([#40](https://github.com/pace-rs/pace/pull/40))
- *(clippy)* apply clippy lints for main

### Other
- update command overview to reflect better the implementation status of several commands
- cleanup crates
- Improve testability and overall usability ([#37](https://github.com/pace-rs/pace/pull/37))
- *(deps)* update rust crate assert_cmd to 2.0.14 ([#39](https://github.com/pace-rs/pace/pull/39))
- update changelog
- add pace-server library
- harmonize github workflows
- update asset auto size
- update asset auto size
- rework key for commands and enhanced plausibility
- *(deps)* remove unnecessary async dep bloat (tokio, condvar, futures)

## [0.7.0](https://github.com/pace-rs/pace/compare/pace-rs-v0.6.3...pace-rs-v0.7.0) - 2024-02-17

### Added
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ similar-asserts = { version = "1.5.0", features = ["serde"] }

[package]
name = "pace-rs"
version = "0.7.0"
version = "0.7.1"
authors = { workspace = true }
categories = { workspace = true }
edition = { workspace = true }
Expand Down
8 changes: 8 additions & 0 deletions crates/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ and this project adheres to

## [Unreleased]

## [0.2.1](https://github.com/pace-rs/pace/compare/pace_cli-v0.2.0...pace_cli-v0.2.1) - 2024-02-22

### Other
- Improve testability and overall usability ([#37](https://github.com/pace-rs/pace/pull/37))
- add pace-server library
- update asset auto size
- update asset auto size

## [0.2.0](https://github.com/pace-rs/pace/compare/pace_cli-v0.1.3...pace_cli-v0.2.0) - 2024-02-17

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pace_cli"
version = "0.2.0"
version = "0.2.1"
authors = { workspace = true }
categories = { workspace = true }
edition = { workspace = true }
Expand Down
14 changes: 14 additions & 0 deletions crates/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,20 @@ and this project adheres to

## [Unreleased]

## [0.9.0](https://github.com/pace-rs/pace/compare/pace_core-v0.8.0...pace_core-v0.9.0) - 2024-02-22

### Fixed
- *(deps)* update serde monorepo to 1.0.197 ([#40](https://github.com/pace-rs/pace/pull/40))
- *(clippy)* apply clippy lints for main

### Other
- cleanup crates
- Improve testability and overall usability ([#37](https://github.com/pace-rs/pace/pull/37))
- add pace-server library
- update asset auto size
- update asset auto size
- *(deps)* remove unnecessary async dep bloat (tokio, condvar, futures)

## [0.8.0](https://github.com/pace-rs/pace/compare/pace_core-v0.7.0...pace_core-v0.8.0) - 2024-02-17

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pace_core"
version = "0.8.0"
version = "0.9.0"
authors = { workspace = true }
categories = { workspace = true }
edition = { workspace = true }
Expand Down
7 changes: 7 additions & 0 deletions crates/server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1](https://github.com/pace-rs/pace/compare/pace_server-v0.1.0...pace_server-v0.1.1) - 2024-02-22

### Other
- cleanup crates
- Improve testability and overall usability ([#37](https://github.com/pace-rs/pace/pull/37))
- update changelog

## [0.1.0](https://github.com/pace-rs/pace/releases/tag/pace_server-v0.1.0) - 2024-02-19

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pace_server"
version = "0.1.0"
version = "0.1.1"
authors = { workspace = true }
categories = { workspace = true }
edition = { workspace = true }
Expand Down
Loading