Skip to content

Commit 9aaf291

Browse files
committed
[release.sh] update to 1.14.0
1 parent 42823a5 commit 9aaf291

File tree

6 files changed

+52
-12
lines changed

6 files changed

+52
-12
lines changed

Cargo.lock

Lines changed: 6 additions & 6 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
@@ -16,7 +16,7 @@ members = [
1616
resolver = "2"
1717

1818
[workspace.package]
19-
version = "1.13.0"
19+
version = "1.14.0"
2020
authors = ["The Nickel Team <[email protected]>"]
2121
license = "MIT"
2222
edition = "2021"
@@ -27,10 +27,10 @@ homepage = "https://nickel-lang.org"
2727
readme = "README.md"
2828

2929
[workspace.dependencies]
30-
nickel-lang-core = { version = "0.14.0", path = "./core", default-features = false }
30+
nickel-lang-core = { version = "0.15.0", path = "./core", default-features = false }
3131
nickel-lang-flock = { version = "0.1.0", path = "./flock" }
3232
nickel-lang-git = { version = "0.1.0", path = "./git" }
33-
nickel-lang-package = { version = "0.3.0", path = "./package" }
33+
nickel-lang-package = { version = "0.4.0", path = "./package" }
3434
nickel-lang-vector = { version = "0.1.0", path = "./vector" }
3535
nickel-lang-utils = { version = "0.1.0", path = "./utils" }
3636
lsp-harness = { version = "0.1.0", path = "./lsp/lsp-harness" }

RELEASES.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,43 @@
1+
Version 1.14 (2025-10-02)
2+
=========================
3+
4+
Nickel 1.14 has no core language changes. It adds position information to
5+
YAML documents, so that if some imported YAML breaks a contract then Nickel
6+
can blame the correct location in the YAML file. Nickel's LSP has had some
7+
bugfixes (thanks to @L0r3m1p5um), fixing a crash and avoiding stale data.
8+
9+
LSP
10+
---
11+
12+
* Implement textDocument/didClose method for LSP by @L0r3m1p5um in https://github.com/tweag/nickel/pull/2323
13+
* Pass sources from World into background eval by @L0r3m1p5um in https://github.com/tweag/nickel/pull/2338
14+
* Avoid copying file contents in LSP eval by @L0r3m1p5um in https://github.com/tweag/nickel/pull/2347
15+
* Fix crash in NLS when creating typechecking diagnostics by @L0r3m1p5um in https://github.com/tweag/nickel/pull/2357
16+
* Fix performance of UsageLookup by @jneem in https://github.com/tweag/nickel/pull/2339
17+
18+
Tooling
19+
-------
20+
21+
* Allow index packages to live in subdirectories of the repo by @jneem in https://github.com/tweag/nickel/pull/2315
22+
* Convert to saphyr for positions in yaml by @jneem in https://github.com/tweag/nickel/pull/2332
23+
* Initial public api rfc by @jneem in https://github.com/tweag/nickel/pull/2337
24+
* Clean up Ident conversions to reduce accidental allocations by @jneem in https://github.com/tweag/nickel/pull/2341
25+
* Declare MSRV as 1.85 by @brandonweeks in https://github.com/tweag/nickel/pull/2364
26+
* Narrow serde_with features by @brandonweeks in https://github.com/tweag/nickel/pull/2366
27+
* Bump malachite to version 0.6 by @brandonweeks in https://github.com/tweag/nickel/pull/2367
28+
* Bump toml to version 0.9 and toml_edit to version 0.23 by @brandonweeks in https://github.com/tweag/nickel/pull/2368
29+
* Plumb custom_transform into EntryState to minimize traversal by @twitchyliquid64 in https://github.com/tweag/nickel/pull/2346
30+
* Restore the static nix release jobs by @jneem in https://github.com/tweag/nickel/pull/2373
31+
32+
Documentation
33+
-------------
34+
35+
* Fix broken note and other cosmetic changes in pkg manual by @yannham in https://github.com/tweag/nickel/pull/2329
36+
37+
## New Contributors
38+
* @brandonweeks made their first contribution in https://github.com/tweag/nickel/pull/2364
39+
* @twitchyliquid64 made their first contribution in https://github.com/tweag/nickel/pull/2346
40+
141
Version 1.13 (2025-08-18)
242
=========================
343

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.14.0"
3+
version = "0.15.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.3.0"
4+
version = "0.4.0"
55

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

wasm-repl/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-wasm-repl"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
description = "WebAssembly REPL for the Nickel programming language."
55
authors.workspace = true
66
edition.workspace = true

0 commit comments

Comments
 (0)