Skip to content

Commit 0e55f56

Browse files
committed
[release.sh] update to 1.13.0
1 parent 83e55a5 commit 0e55f56

File tree

5 files changed

+41
-10
lines changed

5 files changed

+41
-10
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ members = [
1515
resolver = "2"
1616

1717
[workspace.package]
18-
version = "1.12.0"
18+
version = "1.13.0"
1919
authors = ["The Nickel Team <[email protected]>"]
2020
license = "MIT"
2121
edition = "2021"
@@ -25,10 +25,10 @@ homepage = "https://nickel-lang.org"
2525
readme = "README.md"
2626

2727
[workspace.dependencies]
28-
nickel-lang-core = { version = "0.13.0", path = "./core", default-features = false }
28+
nickel-lang-core = { version = "0.14.0", path = "./core", default-features = false }
2929
nickel-lang-flock = { version = "0.1.0", path = "./flock" }
3030
nickel-lang-git = { version = "0.1.0", path = "./git" }
31-
nickel-lang-package = { version = "0.2.0", path = "./package" }
31+
nickel-lang-package = { version = "0.3.0", path = "./package" }
3232
nickel-lang-vector = { version = "0.1.0", path = "./vector" }
3333
nickel-lang-utils = { version = "0.1.0", path = "./utils" }
3434
lsp-harness = { version = "0.1.0", path = "./lsp/lsp-harness" }

RELEASES.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
Version 1.13 (2025-08-18)
2+
=========================
3+
4+
Nickel 1.13 includes various bug-fixes and some improvements to error messages,
5+
but no core language changes. There has been substantial work towards a new
6+
runtime representation, which will eventually reduce the interpreter's memory
7+
usage substantially (and it is also a step towards the upcoming bytecode
8+
interpreter).
9+
10+
LSP
11+
---
12+
13+
* Fix cache miss when pulling source file by a relative path by @L0r3m1p5um in https://github.com/tweag/nickel/pull/2276
14+
* Publish diagnostics for parsing errors in imported files by @L0r3m1p5um in https://github.com/tweag/nickel/pull/2299
15+
16+
Tooling
17+
-------
18+
19+
* Wrap App arguments in atoms by @jneem in https://github.com/tweag/nickel/pull/2287
20+
* Print more information for git errors by @jneem in https://github.com/tweag/nickel/pull/2283
21+
* [RFC007] Improve the runtime value representation (not yet used by the interpreter) by @yannham in https://github.com/tweag/nickel/pull/2282, https://github.com/tweag/nickel/pull/2288, https://github.com/tweag/nickel/pull/2290, https://github.com/tweag/nickel/pull/2297, https://github.com/tweag/nickel/pull/2303
22+
* Add format --check by @bthmc in https://github.com/tweag/nickel/pull/2309
23+
* [nix-experimental] Provide the proper base path to Nix with `%eval_nix%` by @yannham in https://github.com/tweag/nickel/pull/2314
24+
25+
Documentation
26+
-------------
27+
28+
* Fix formatting of doc/manual/package-management.md by @yannham in https://github.com/tweag/nickel/pull/2274
29+
* Fix missing package field in package manual example by @yannham in https://github.com/tweag/nickel/pull/2275
30+
* Update examples to use latest Nickel idioms by @yannham in https://github.com/tweag/nickel/pull/2289
31+
132
Version 1.12 (2025-06-04)
233
=========================
334

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nickel-lang-core"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
description = "Programmable configuration files."
55
authors.workspace = true
66
edition.workspace = true

package/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "nickel-lang-package"
33
description = "Utility library for the Nickel Package Manager"
4-
version = "0.2.0"
4+
version = "0.3.0"
55

66
authors.workspace = true
77
edition.workspace = true

0 commit comments

Comments
 (0)