Skip to content

Commit 4206972

Browse files
authored
Release 0.7.0 (#1120)
* Update CHANGELOG * Bump versions in Cargo.tomls * Bump lockfiles * Nix stuff: s/runCommandNoCC/runCommand/
1 parent 3cc4a5d commit 4206972

File tree

10 files changed

+55
-31
lines changed

10 files changed

+55
-31
lines changed

CHANGELOG.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,31 @@ This name should be decided amongst the team before the release.
4242

4343
## Unreleased
4444

45-
[Full list of changes](https://github.com/tweag/topiary/compare/v0.6.1...HEAD)
45+
[Full list of changes](https://github.com/tweag/topiary/compare/v0.7.0...HEAD)
46+
47+
<!--
48+
### Added
49+
- <New feature>
50+
51+
### Changed
52+
- <Changes in existing functionality>
53+
54+
### Deprecated
55+
- <Soon-to-be removed features>
56+
57+
### Removed
58+
- <Removed features>
59+
60+
### Fixed
61+
- <Bug fixes>
62+
63+
### Security
64+
- <Vulnerabilities>
65+
-->
66+
67+
## v0.7.0 - Heavenly Hemlock - 2025-10-29
68+
69+
[Full list of changes](https://github.com/tweag/topiary/compare/v0.6.1...v0.7.0)
4670

4771
### Added
4872
- [#921](https://github.com/tweag/topiary/pull/921) man pages for the Topiary CLI

Cargo.lock

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

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace.package]
2-
version = "0.6.1"
2+
version = "0.7.0"
33
edition = "2024"
44
authors = ["Tweag"]
55
homepage = "https://topiary.tweag.io"
@@ -78,11 +78,11 @@ wasm-bindgen-futures = "=0.4"
7878
wasm-bindgen-test = "=0.3"
7979
web-sys = "0.3"
8080

81-
topiary-web-tree-sitter-sys = { version = "0.6.2", path = "./topiary-web-tree-sitter-sys" }
82-
topiary-tree-sitter-facade = { version = "0.6.2", path = "./topiary-tree-sitter-facade" }
83-
topiary-core = { version = "0.6.1", path = "./topiary-core" }
84-
topiary-config = { version = "0.6.3", path = "./topiary-config" }
85-
topiary-queries = { version = "0.6.4", path = "./topiary-queries" }
81+
topiary-web-tree-sitter-sys = { version = "0.7.0", path = "./topiary-web-tree-sitter-sys" }
82+
topiary-tree-sitter-facade = { version = "0.7.0", path = "./topiary-tree-sitter-facade" }
83+
topiary-core = { version = "0.7.0", path = "./topiary-core" }
84+
topiary-config = { version = "0.7.0", path = "./topiary-config" }
85+
topiary-queries = { version = "0.7.0", path = "./topiary-queries" }
8686
miette = { version = "7.6.0", features = ["fancy"] }
8787
tabled = "0.20.0"
8888
thiserror = "2.0.16"

flake.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.

nix/utils/nickelUtils.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
lib,
33
nickel,
4-
runCommandNoCC,
4+
runCommand,
55
writeText,
66
}:
77

@@ -40,7 +40,7 @@ let
4040
fromNickelFile =
4141
path:
4242
let
43-
jsonDrv = runCommandNoCC "${removeSuffix ".ncl" (baseNameOf path)}.json" { } ''
43+
jsonDrv = runCommand "${removeSuffix ".ncl" (baseNameOf path)}.json" { } ''
4444
${nickel}/bin/nickel export ${path} > $out
4545
'';
4646
in

nix/utils/prefetchLanguages.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
lib,
99
fetchgit,
1010
nickel,
11-
runCommandNoCC,
11+
runCommand,
1212
writeText,
1313
tree-sitter,
1414
toJSONFile,

topiary-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "topiary-config"
33
# The version should always be "X.Y.Z" where the workspace version is `X.Y.Z'`
44
# with `Z' <= Z`. Whenever there's a need to release an update to the config
55
# without changing the core of Topiary, just bump `Z`.
6-
version = "0.6.3"
6+
version = "0.7.0"
77
description = "Configuration parser and defaults for Topiary"
88
categories = ["development-tools", "text-processing"]
99
keywords = ["code-formatter", "formatter", "text", "tree-sitter"]

topiary-queries/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "topiary-queries"
33
# The version should always be "X.Y.Z" where the workspace version is `X.Y.Z'`
44
# with `Z' <= Z`. Whenever there's a need to release an update to the queries
55
# without changing the core of Topiary, just bump `Z`.
6-
version = "0.6.4"
6+
version = "0.7.0"
77
categories = ["development-tools", "text-processing"]
88
keywords = ["code-formatter", "formatter", "text", "tree-sitter"]
99
edition.workspace = true

topiary-tree-sitter-facade/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "topiary-tree-sitter-facade"
33
authors = ["<[email protected]>"]
44
license = "Apache-2.0 WITH LLVM-exception"
5-
version = "0.6.2"
5+
version.workspace = true
66
edition.workspace = true
77
homepage.workspace = true
88
repository.workspace = true

topiary-web-tree-sitter-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "topiary-web-tree-sitter-sys"
33
authors = ["<[email protected]>"]
44
license = "Apache-2.0 WITH LLVM-exception"
5-
version = "0.6.2"
5+
version.workspace = true
66
edition.workspace = true
77
homepage.workspace = true
88
repository.workspace = true

0 commit comments

Comments
 (0)