diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b37efdb..9df616dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.4.1 + +## Improvements + +* Support for textual links in items in anticipation of flat records namespace (0.5 feature) + (995c2e41-1190-4ba2-bd24-50118f2664c7, d5832c5e-2e65-465a-abab-138639287a01,8f33f6ce-a925-4c88-96e9-8b9a5e06972d) + # 0.4.0 ## Breaking changes diff --git a/Cargo.lock b/Cargo.lock index 7c4dc5b3..6062811a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1099,7 +1099,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "sit" -version = "0.4.1-pre" +version = "0.4.1" dependencies = [ "atty 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1117,7 +1117,7 @@ dependencies = [ "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.43 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", - "sit-core 0.4.1-pre", + "sit-core 0.4.1", "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "thread_local 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1128,7 +1128,7 @@ dependencies = [ [[package]] name = "sit-core" -version = "0.4.1-pre" +version = "0.4.1" dependencies = [ "assert_matches 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "blake2 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1156,7 +1156,7 @@ dependencies = [ [[package]] name = "sit-web" -version = "0.4.1-pre" +version = "0.4.1" dependencies = [ "blake2 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1175,7 +1175,7 @@ dependencies = [ "serde 1.0.43 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.43 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)", - "sit-core 0.4.1-pre", + "sit-core 0.4.1", "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "thread_local 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 47bade4b..e86d145c 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,8 @@ +# 0.4.1 + +This is an interim release that should allow users of a released version to access +sit repositories with a flat records namespace enabled (currently a master-only feature) + # 0.4.0 This is primarily a bug fix release. It fixes a couple of important problems diff --git a/sit-core/Cargo.toml b/sit-core/Cargo.toml index f7a11387..b0fdb6ba 100644 --- a/sit-core/Cargo.toml +++ b/sit-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sit-core" -version = "0.4.1-pre" +version = "0.4.1" authors = ["Yurii Rashkovskii "] license = "MIT/Apache-2.0" repository = "https://github.com/sit-it/sit" diff --git a/sit-web/Cargo.toml b/sit-web/Cargo.toml index 7ad39731..93575240 100644 --- a/sit-web/Cargo.toml +++ b/sit-web/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sit-web" -version = "0.4.1-pre" +version = "0.4.1" description = "Serverless Information Tracker Web Interface" authors = ["Yurii Rashkovskii "] license = "MIT/Apache-2.0" @@ -26,7 +26,7 @@ blake2 = "0.7" hex = "0.3" which = "2.0" thread_local = "0.3" -sit-core = { path = "../sit-core", version = "0.4.1-pre", features = ["git"] } +sit-core = { path = "../sit-core", version = "0.4.1", features = ["git"] } [build-dependencies] include_dir = "0.1" diff --git a/sit/Cargo.toml b/sit/Cargo.toml index 666bcaeb..8f3af135 100644 --- a/sit/Cargo.toml +++ b/sit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sit" -version = "0.4.1-pre" +version = "0.4.1" description = "Serverless Information Tracker" authors = ["Yurii Rashkovskii "] license = "MIT/Apache-2.0" @@ -25,7 +25,7 @@ dunce = "0.1" which = "2.0" atty = "0.2" thread_local = "0.3" -sit-core = { path = "../sit-core", version = "0.4.1-pre", features = ["git"] } +sit-core = { path = "../sit-core", version = "0.4.1", features = ["git"] } [dev-dependencies] cli_test_dir = "0.1.5"