Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"resl":"0.1.0","resl-cli":"0.1.0","resl-ffi":"0.1.0"}
{"resl":"0.2.0","resl-cli":"0.2.0","resl-ffi":"0.2.0"}
6 changes: 3 additions & 3 deletions Cargo.lock

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

14 changes: 14 additions & 0 deletions resl-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.2.0](https://github.com/decipher3114/resl/compare/v0.1.0...v0.2.0) (2025-11-11)


### Features

* initial RESL language implementation ([c7ab1d7](https://github.com/decipher3114/resl/commit/c7ab1d7c906d3b14bb469a2c70c8a8380d0900d4))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* resl bumped from 0.1.0 to 0.2.0

## 0.1.0 (2025-11-11)


Expand Down
4 changes: 2 additions & 2 deletions resl-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "resl-cli"
version = "0.1.0"
version = "0.2.0"
edition = "2024"
description = "Command-line interface for RESL - Runtime Evaluated Serialization Language"
homepage = "https://decipher3114.github.io/resl"
Expand All @@ -16,7 +16,7 @@ path = "src/main.rs"
[dependencies]
anyhow = "1.0.99"
clap = { version = "4.5.47", features = ["derive"] }
resl = { path = "../resl", version = "0.1.0", features = ["preserve-order"] }
resl = { path = "../resl", version = "0.2.0", features = ["preserve-order"] }
serde = { version = "1.0.224", features = ["derive"] }
serde_json = "1.0.145"
toml = "0.9.6"
Expand Down
14 changes: 14 additions & 0 deletions resl-ffi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.2.0](https://github.com/decipher3114/resl/compare/v0.1.0...v0.2.0) (2025-11-11)


### Features

* initial RESL language implementation ([c7ab1d7](https://github.com/decipher3114/resl/commit/c7ab1d7c906d3b14bb469a2c70c8a8380d0900d4))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* resl bumped from 0.1.0 to 0.2.0

## 0.1.0 (2025-11-11)


Expand Down
4 changes: 2 additions & 2 deletions resl-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "resl-ffi"
version = "0.1.0"
version = "0.2.0"
edition = "2024"
description = "C FFI bindings for RESL - Runtime Evaluated Serialization Language"
homepage = "https://decipher3114.github.io/resl"
Expand All @@ -14,7 +14,7 @@ crate-type = ["cdylib"]
name = "libresl"

[dependencies]
resl = { path = "../resl", version = "0.1.0", features = ["preserve-order"] }
resl = { path = "../resl", version = "0.2.0", features = ["preserve-order"] }

[build-dependencies]
cbindgen = "0.29.0"
13 changes: 13 additions & 0 deletions resl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [0.2.0](https://github.com/decipher3114/resl/compare/v0.1.0...v0.2.0) (2025-11-11)


### Features

* initial RESL language implementation ([c7ab1d7](https://github.com/decipher3114/resl/commit/c7ab1d7c906d3b14bb469a2c70c8a8380d0900d4))


### Bug Fixes

* make `ParseState` pub ([91253f1](https://github.com/decipher3114/resl/commit/91253f1ce5fa6aad9ed24fd764a5e9b17f43af0d))
* use absolute mod path `state` ([bc29145](https://github.com/decipher3114/resl/commit/bc29145deb3024ade7f51d58cba534bc230af869))

## 0.1.0 (2025-11-11)


Expand Down
2 changes: 1 addition & 1 deletion resl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "resl"
version = "0.1.0"
version = "0.2.0"
edition = "2024"
description = "Runtime Evaluated Serialization Language: A modern configuration and serialization language with variables, expressions, and dynamic runtime evaluation"
documentation = "https://docs.rs/resl"
Expand Down