Skip to content

Commit

Permalink
Merge pull request #31 from Scattered-Systems/v0.1.35
Browse files Browse the repository at this point in the history
V0.1.35
  • Loading branch information
FL03 authored Nov 29, 2022
2 parents 7d3ff38 + 35e9671 commit a0363cd
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 13 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/rust-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Rust Publish

on:
push:
tags: [ "v*.*.*" ]
workflow_dispatch:

env:
CARGO_TERM_COLOR: always

jobs:
publish:
name: Rust - Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- nightly
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: |
cargo publish --all-features --jobs 1 -v -p scsys-actors --token ${CARGO_REGISTRY_TOKEN}
cargo publish --all-features --jobs 1 -v -p scsys-core --token ${CARGO_REGISTRY_TOKEN}
cargo publish --all-features --jobs 1 -v -p scsys-crypto --token ${CARGO_REGISTRY_TOKEN}
cargo publish --all-features --jobs 1 -v -p scsys-derive --token ${CARGO_REGISTRY_TOKEN}
cargo publish --all-features --jobs 1 -v -p scsys-gen --token ${CARGO_REGISTRY_TOKEN}
cargo publish --all-features --jobs 1 -v -p scsys-macros --token ${CARGO_REGISTRY_TOKEN}
cargo publish --all-features --jobs 1 -v -p scsys --token ${CARGO_REGISTRY_TOKEN}
2 changes: 1 addition & 1 deletion actors/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["core", "primitives", "scsys"]
license = "Apache-2.0"
name = "scsys-actors"
repository = "https://github.com/scattered-systems/scsys"
version = "0.1.34" # TODO: Update the package version
version = "0.1.35" # TODO: Update the package version

[lib]
crate-type = ["cdylib", "rlib"]
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["core", "primitives", "scsys"]
license = "Apache-2.0"
name = "scsys-core"
repository = "https://github.com/scattered-systems/scsys"
version = "0.1.34" # TODO: Update the package version
version = "0.1.35" # TODO: Update the package version

[lib]
crate-type = ["cdylib", "rlib"]
Expand Down
2 changes: 1 addition & 1 deletion crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["crypto", "scsys"]
license = "Apache-2.0"
name = "scsys-crypto"
repository = "https://github.com/scattered-systems/scsys"
version = "0.1.34" # TODO: Update the package version
version = "0.1.35" # TODO: Update the package version

[features]
default = ["wasm"]
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["derive", "macros", "scsys"]
license = "Apache-2.0"
name = "scsys-derive"
repository = "https://github.com/scattered-systems/scsys"
version = "0.1.34" # TODO: Update the package version
version = "0.1.35" # TODO: Update the package version

[lib]
proc-macro = true
Expand Down
2 changes: 1 addition & 1 deletion gen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "Apache-2.0"
name = "scsys-gen"
readme = "README.md"
repository = "https://github.com/scattered-systems/scsys"
version = "0.1.34" # TODO: Update the package version
version = "0.1.35" # TODO: Update the package version

[features]
default = ["wasm"]
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["macros", "scsys"]
license = "Apache-2.0"
name = "scsys-macros"
repository = "https://github.com/scattered-systems/scsys"
version = "0.1.34" # TODO: Update the package version
version = "0.1.35" # TODO: Update the package version

[lib]
crate-type = ["cdylib", "rlib"]
Expand Down
14 changes: 7 additions & 7 deletions scsys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "Apache-2.0"
name = "scsys"
readme = "README.md"
repository = "https://github.com/scattered-systems/scsys"
version = "0.1.34" # TODO: Update the package version
version = "0.1.35" # TODO: Update the package version

[features]
default = [
Expand Down Expand Up @@ -57,12 +57,12 @@ bson = { features = ["chrono-0_4", "serde_with", "uuid-0_8"], optional = true, v
chrono = { optional = true, version = "0.4.22" }
config = { optional = true, version = "0.13.2" }

scsys-actors = { features = [], optional = true, path = "../actors", version = "0.1.33" }
scsys-core = { features = [], optional = true, path = "../core", version = "0.1.33" }
scsys-crypto = { features = ["full"], optional = true, path = "../crypto", version = "0.1.33" }
scsys-derive = { features = [], optional = true, path = "../derive", version = "0.1.33" }
scsys-gen = { features = ["full"], optional = true, path = "../gen", version = "0.1.33" }
scsys-macros = { features = [], optional = true, path = "../macros", version = "0.1.33" }
scsys-actors = { features = [], optional = true, path = "../actors", version = "0.1.35" }
scsys-core = { features = [], optional = true, path = "../core", version = "0.1.35" }
scsys-crypto = { features = ["full"], optional = true, path = "../crypto", version = "0.1.35" }
scsys-derive = { features = [], optional = true, path = "../derive", version = "0.1.35" }
scsys-gen = { features = ["full"], optional = true, path = "../gen", version = "0.1.35" }
scsys-macros = { features = [], optional = true, path = "../macros", version = "0.1.35" }

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit a0363cd

Please sign in to comment.