Skip to content

Commit

Permalink
Doc: Prepare changelog for v0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xFrednet committed Dec 2, 2023
1 parent a71c7f6 commit 8d93116
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[Unreleased]: https://github.com/rust-marker/marker/compare/v0.4.3-rc...HEAD
[0.4.3-rc]: https://github.com/rust-marker/marker/releases/tag/v0.4.3-rc
[Unreleased]: https://github.com/rust-marker/marker/compare/v0.4.3...HEAD
[0.4.3]: https://github.com/rust-marker/marker/releases/tag/v0.4.3
[0.4.2]: https://github.com/rust-marker/marker/releases/tag/v0.4.2
[0.4.1]: https://github.com/rust-marker/marker/releases/tag/v0.4.1
[0.4.0]: https://github.com/rust-marker/marker/releases/tag/v0.4.0
Expand Down Expand Up @@ -27,7 +27,7 @@ The following components are considered to be internal and they are excluded fro

## [Unreleased]

## [0.4.3-rc] - 2023-12-02
## [0.4.3] - 2023-12-02

[#326]: https://github.com/rust-marker/marker/pull/326

Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-marker/marker"

# region replace marker version dev
version = "0.5.0-dev"
version = "0.4.3-dev"
# endregion replace marker version dev

# The MSRV is applied to the public library crates published to crates.io
rust-version = "1.66"

[workspace.dependencies]
# region replace marker version dev
marker_adapter = { path = "./marker_adapter", version = "0.5.0-dev" }
marker_api = { path = "./marker_api", version = "0.5.0-dev" }
marker_error = { path = "./marker_error", version = "0.5.0-dev" }
marker_adapter = { path = "./marker_adapter", version = "0.4.3-dev" }
marker_api = { path = "./marker_api", version = "0.4.3-dev" }
marker_error = { path = "./marker_error", version = "0.4.3-dev" }
marker_uitest = { path = "./marker_uitest", features = ["dev-build"] }
marker_utils = { path = "./marker_utils", version = "0.5.0-dev" }
marker_utils = { path = "./marker_utils", version = "0.4.3-dev" }
# endregion replace marker version dev

bumpalo = "3.14"
Expand Down
4 changes: 2 additions & 2 deletions cargo-marker/src/backend/driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ pub(crate) fn default_driver_info() -> DriverVersionInfo {
toolchain: "nightly-2023-11-16".to_string(),
// endregion replace rust toolchain dev
// region replace marker version dev
version: "0.5.0-dev".to_string(),
api_version: "0.5.0-dev".to_string(),
version: "0.4.3-dev".to_string(),
api_version: "0.4.3-dev".to_string(),
// endregion replace marker version dev
}
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/release/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Using config env vars (override these if needed):
# This script isn't meant to be run from `master`, but if it is, then
# it will install the latest version be it a stable version or a pre-release.
# region replace marker version unstable
$version = "0.4.3-rc"
$version = "0.4.2"
# endregion replace marker version unstable

# region replace rust toolchain release
Expand Down
2 changes: 1 addition & 1 deletion scripts/release/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ echo "Bash version: $BASH_VERSION" >&2
# This script isn't meant to be run from `master`, but if it is, then
# it will install the latest version be it a stable version or a pre-release.
# region replace marker version unstable
version=0.4.3-rc
version=0.4.2
# endregion replace marker version unstable

# region replace rust toolchain release
Expand Down

0 comments on commit 8d93116

Please sign in to comment.