Skip to content

Commit

Permalink
Prepare 0.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
t4ccer committed Dec 27, 2023
1 parent 9a14ed8 commit c7abbc9
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 28 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

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

7 changes: 3 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cgt"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
authors = ["Tomasz Maciosowski <[email protected]>"]
license = "AGPL-3.0"
Expand All @@ -9,7 +9,6 @@ repository = "https://github.com/t4ccer/cgt-rs"
description = "Library to work with Combinatorial Games"
homepage = "https://cgt.t4ccer.com/"
documentation = "https://docs.rs/cgt"
exclude = ["papers"]
keywords = ["cgt"]
categories = ["mathematics", "science"]

Expand All @@ -22,7 +21,7 @@ nom = "7.1.3"
num-rational = { version = "0.4.1", default-features = false, features = ["std"]}
serde = { version = "1.0.172", optional = true, features = ["derive"]}
serde_repr = { version = "0.1.12", optional = true}
cgt-derive = { path = "cgt-derive"}
cgt_derive = { version = "0.4.0", path = "./cgt_derive"}
rayon = {version = "1.7.0", optional = true}
dashmap = { version = "5.5.3", features = ["inline"] }
rand = "0.8.5"
Expand All @@ -36,7 +35,7 @@ serde = ["dep:serde", "dep:serde_repr", "num-rational/serde"]
rayon = ["dep:rayon"]

[workspace]
members = ["cgt-cli", "cgt-py", "cgt-derive"]
members = ["cgt-cli", "cgt-py", "cgt_derive"]

[profile.release]
lto = true
Expand Down
2 changes: 1 addition & 1 deletion cgt-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cgt-cli"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
authors = ["Tomasz Maciosowski <[email protected]>"]
license = "AGPL-3.0"
Expand Down
11 changes: 0 additions & 11 deletions cgt-derive/Cargo.toml

This file was deleted.

2 changes: 1 addition & 1 deletion cgt-py/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cgt-py"
version = "0.3.0"
version = "0.4.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
17 changes: 17 additions & 0 deletions cgt_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[package]
name = "cgt_derive"
version = "0.4.0"
edition = "2021"
authors = ["Tomasz Maciosowski <[email protected]>"]
license = "AGPL-3.0"
readme = "README.md"
repository = "https://github.com/t4ccer/cgt-rs"
description = "Derive macros for cgt package"
categories = ["mathematics", "science"]

[lib]
proc-macro = true

[dependencies]
quote = "1.0.33"
syn = {version = "2.0.39"}
3 changes: 3 additions & 0 deletions cgt_derive/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# `cgt_derive`

See https://docs.rs/cgt
File renamed without changes.
File renamed without changes.

0 comments on commit c7abbc9

Please sign in to comment.