Skip to content

Commit 233689e

Browse files
committed
release(0.5.3): Update changelog and versions
1 parent 8cabfc9 commit 233689e

File tree

5 files changed

+15
-9
lines changed

5 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ _Other cases_
2626

2727
---
2828

29+
## [v0.5.3](https://github.com/devrc-hub/devrc/releases/tag/v0.5.0) - 2023-06-01
30+
31+
### Bugfixes
32+
Added substitution of ~/ with the home directory.
33+
34+
2935
## [v0.5.0](https://github.com/devrc-hub/devrc/releases/tag/v0.5.0) - 2023-05-29
3036

3137
### Changes

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "devrc"
33
edition = "2018"
4-
version = "0.5.2"
4+
version = "0.5.3"
55

66
license = "MIT"
77

@@ -49,8 +49,8 @@ url = "2.3.1"
4949

5050
anyhow = "1.0.62"
5151

52-
devrc-plugins = { path = "../plugins", version = "0.5.2"}
53-
devrc-core = { path = "../core", version = "0.5.2"}
52+
devrc-plugins = { path = "../plugins", version = "0.5.3"}
53+
devrc-core = { path = "../core", version = "0.5.3"}
5454

5555
[build-dependencies]
5656
datetime = { version = "0.5.2", default_features = false }

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "devrc-core"
33
edition = "2018"
4-
version = "0.5.2"
4+
version = "0.5.3"
55
description = "Core devrc components"
66

77
license = "MIT"

plugins/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "devrc-plugins"
33
edition = "2018"
4-
version = "0.5.2"
4+
version = "0.5.3"
55
description = "Library for creating plugins for devrc"
66

77
license = "MIT"
@@ -23,7 +23,7 @@ log = "0.4.17"
2323
libloading = "0.8.0"
2424
anyhow = "1.0.62"
2525
indexmap = { version="1.9.1", features = ["serde-1"] }
26-
devrc-core = { path = "../core", version = "0.5.2"}
26+
devrc-core = { path = "../core", version = "0.5.3"}
2727

2828

2929
[build-dependencies]

0 commit comments

Comments
 (0)