Skip to content

Commit 7037101

Browse files
committed
Bump to 0.3.1
1 parent db1ca8b commit 7037101

File tree

5 files changed

+29
-5
lines changed

5 files changed

+29
-5
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,19 @@ Released YYYY-MM-DD.
2828

2929
--------------------------------------------------------------------------------
3030

31+
## 0.3.1
32+
33+
Released 2020-01-14.
34+
35+
### Fixed
36+
37+
* Fixed some links and version numbers in README.
38+
39+
--------------------------------------------------------------------------------
40+
3141
## 0.3.0
3242

33-
Released 2020-01-13.
43+
Released 2020-01-14.
3444

3545
### Added
3646

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "arbitrary"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Simonas Kazlauskas <[email protected]>", "Brian L. Troutwine <[email protected]>"]
55
categories = ["development-tools::testing"]
66
edition = "2018"
@@ -12,7 +12,7 @@ repository = "https://github.com/nagisa/rust_arbitrary/"
1212
documentation = "https://docs.rs/arbitrary/"
1313

1414
[dependencies]
15-
derive_arbitrary = { version = "=0.3.0", path = "./derive", optional = true }
15+
derive_arbitrary = { version = "=0.3.1", path = "./derive", optional = true }
1616

1717
[dev-dependencies]
1818

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ feature:
4343
# Cargo.toml
4444

4545
[dependencies]
46-
arbitrary = { version = "0.3.0", features = ["derive"] }
46+
arbitrary = { version = "0.3.1", features = ["derive"] }
4747
```
4848

4949
And then you can simply add `#[derive(Arbitrary)]` annotations to your types:

derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "derive_arbitrary"
3-
version = "0.3.0" # Make sure it matches the version of the arbitrary crate itself.
3+
version = "0.3.1" # Make sure it matches the version of the arbitrary crate itself.
44
authors = ["Andre Bogus <[email protected]>"]
55
categories = ["development-tools::testing"]
66
edition = "2018"

publish.sh

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env bash
2+
3+
set -eux
4+
5+
cd $(dirname $0)/derive
6+
7+
cargo publish
8+
9+
cd ..
10+
11+
# Let the crates.io index figure out we've published `derive_arbitrary` already.
12+
sleep 5
13+
14+
cargo publish

0 commit comments

Comments
 (0)