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

ci(fix): install cargo-workspaces #249

Merged
merged 2 commits into from Oct 7, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Install release tools
if: ${{ steps.cache_tools.outputs.cache-hit==false }}
run: |
cargo install cargo-edit toml-cli
cargo install cargo-edit cargo-workspaces toml-cli

- name: git config
run: |
Expand Down
3 changes: 0 additions & 3 deletions CHANGELOG.md
Expand Up @@ -10,8 +10,6 @@ All other sections are for end-users.
<!-- markdownlint-disable MD024 -->
## [Unreleased]

## [v0.18.1] - 2022-10-07

### For developers

- Fix publish job in automated release ([#248](https://github.com/SpringQL/SpringQL/pull/248)
Expand Down Expand Up @@ -295,7 +293,6 @@ All other sections are for end-users.
<!-- Versions -->
[Unreleased]: https://github.com/SpringQL/SpringQL/compare/v0.17.1...HEAD
[Released]: https://github.com/SpringQL/SpringQL/releases
[v0.18.1]: https://github.com/SpringQL/SpringQL/compare/v0.18.0...v0.18.1
[v0.18.0]: https://github.com/SpringQL/SpringQL/compare/v0.17.2...v0.18.0
[v0.17.1]: https://github.com/SpringQL/SpringQL/compare/v0.17.0...v0.17.1
[v0.17.0]: https://github.com/SpringQL/SpringQL/compare/v0.16.1...v0.17.0
Expand Down
2 changes: 1 addition & 1 deletion springql-core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "springql-core"
version = "0.18.1"
version = "0.18.0"

authors = ["Sho Nakatani <lay.sakura@gmail.com>"]
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions springql/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "springql"
version = "0.18.1"
version = "0.18.0"

authors = ["Sho Nakatani <lay.sakura@gmail.com>"]
license = "MIT OR Apache-2.0"
Expand All @@ -15,7 +15,7 @@ readme = "../README.md"
repository = "https://github.com/SpringQL/SpringQL"

[dependencies]
springql-core = { version = "0.18.1", path="../springql-core"}
springql-core = { version = "0.18.0", path="../springql-core"}

[dev-dependencies]
springql-foreign-service = {path = "../foreign-service"}
Expand Down