Skip to content

Commit 0567f17

Browse files
GiggleLiuclaude
andcommitted
release: v0.3.0
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 05c131c commit 0567f17

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = [".", "problemreductions-macros", "problemreductions-cli"]
33

44
[package]
55
name = "problemreductions"
6-
version = "0.2.0"
6+
version = "0.3.0"
77
edition = "2021"
88
description = "A library for reducing NP-hard problems"
99
license = "MIT"
@@ -33,7 +33,7 @@ good_lp = { version = "1.8", default-features = false, optional = true }
3333
inventory = "0.3"
3434
ordered-float = "5.0"
3535
rand = "0.9"
36-
problemreductions-macros = { version = "0.2.0", path = "problemreductions-macros" }
36+
problemreductions-macros = { version = "0.3.0", path = "problemreductions-macros" }
3737

3838
[dev-dependencies]
3939
proptest = "1.0"

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,9 @@ ifndef V
127127
$(error Usage: make release V=x.y.z)
128128
endif
129129
@echo "Releasing v$(V)..."
130-
sed -i 's/^version = ".*"/version = "$(V)"/' Cargo.toml
131-
sed -i 's/^version = ".*"/version = "$(V)"/' problemreductions-macros/Cargo.toml
132-
sed -i 's/problemreductions-macros = { version = "[^"]*"/problemreductions-macros = { version = "$(V)"/' Cargo.toml
130+
sed -i '' 's/^version = ".*"/version = "$(V)"/' Cargo.toml
131+
sed -i '' 's/^version = ".*"/version = "$(V)"/' problemreductions-macros/Cargo.toml
132+
sed -i '' 's/problemreductions-macros = { version = "[^"]*"/problemreductions-macros = { version = "$(V)"/' Cargo.toml
133133
cargo check
134134
git add Cargo.toml problemreductions-macros/Cargo.toml
135135
git commit -m "release: v$(V)"

problemreductions-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "problemreductions-macros"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
description = "Procedural macros for problemreductions"
66
license = "MIT"

0 commit comments

Comments
 (0)