Skip to content
Open
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
20 changes: 10 additions & 10 deletions Cargo.lock

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

17 changes: 17 additions & 0 deletions crates/nwnrs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.0.2](https://github.com/urothis/nwnrs/compare/nwnrs-v0.0.1...nwnrs-v0.0.2) - 2026-07-18

### Other

- Add docker and module folders ([#72](https://github.com/urothis/nwnrs/pull/72))
- Refactor NWScript ([#71](https://github.com/urothis/nwnrs/pull/71))
- Add comprehensive tests for MDL model parsing and conversion ([#68](https://github.com/urothis/nwnrs/pull/68))
- update README.md content and enhance library documentation ([#43](https://github.com/urothis/nwnrs/pull/43))
8 changes: 4 additions & 4 deletions crates/nwnrs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nwnrs"
version = "0.0.1"
version = "0.0.2"
edition.workspace = true
license.workspace = true
publish = true
Expand All @@ -19,9 +19,9 @@ categories = [
[dependencies]
argh.workspace = true
image.workspace = true
nwnrs-nwpkg = { package = "nwnrs-nwpkg", path = "../nwpkg", version = "0.0.1" }
nwnrs-nwscript = { package = "nwnrs-nwscript", path = "../nwscript", version = "0.0.1" }
nwnrs-types = { package = "nwnrs-types", path = "../types", version = "0.0.1" }
nwnrs-nwpkg = { package = "nwnrs-nwpkg", path = "../nwpkg", version = "0.0.2" }
nwnrs-nwscript = { package = "nwnrs-nwscript", path = "../nwscript", version = "0.0.2" }
nwnrs-types = { package = "nwnrs-types", path = "../types", version = "0.0.2" }
reqwest.workspace = true
tokio.workspace = true
tracing.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions crates/nwpkg/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.0.2](https://github.com/urothis/nwnrs/compare/nwnrs-nwpkg-v0.0.1...nwnrs-nwpkg-v0.0.2) - 2026-07-18

### Other

- Add docker and module folders ([#72](https://github.com/urothis/nwnrs/pull/72))
4 changes: 2 additions & 2 deletions crates/nwpkg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nwnrs-nwpkg"
version = "0.0.1"
version = "0.0.2"
edition.workspace = true
license.workspace = true
publish = true
Expand All @@ -13,7 +13,7 @@ keywords = ["nwn", "neverwinter-nights", "package", "toml", "json"]
categories = ["config", "game-development"]

[dependencies]
nwnrs-types = { path = "../types", version = "0.0.1", default-features = false, features = [
nwnrs-types = { path = "../types", version = "0.0.2", default-features = false, features = [
"checksums",
"compressedbuf",
"erf",
Expand Down
18 changes: 18 additions & 0 deletions crates/nwscript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.0.2](https://github.com/urothis/nwnrs/compare/nwnrs-nwscript-v0.0.1...nwnrs-nwscript-v0.0.2) - 2026-07-18

### Fixed

- simplify candidate path resolution in discovery module.

### Other

- Refactor NWScript ([#71](https://github.com/urothis/nwnrs/pull/71))
6 changes: 3 additions & 3 deletions crates/nwscript/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nwnrs-nwscript"
version = "0.0.1"
version = "0.0.2"
edition.workspace = true
license.workspace = true
publish = true
Expand All @@ -13,11 +13,11 @@ keywords = ["nwn", "neverwinter-nights", "nwscript", "compiler", "ncs"]
categories = ["compilers", "parser-implementations", "game-development"]

[dependencies]
nwnrs-types = { path = "../types", version = "0.0.1", default-features = false, features = ["io", "resman"] }
nwnrs-types = { path = "../types", version = "0.0.2", default-features = false, features = ["io", "resman"] }
serde.workspace = true

[dev-dependencies]
nwnrs-types = { path = "../types", version = "0.0.1", features = ["install"] }
nwnrs-types = { path = "../types", version = "0.0.2", features = ["install"] }

[lints]
workspace = true
Expand Down
25 changes: 25 additions & 0 deletions crates/types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.0.2](https://github.com/urothis/nwnrs/compare/nwnrs-types-v0.0.1...nwnrs-types-v0.0.2) - 2026-07-18

### Added

- add winreg dependency and enhance Windows installation discovery logic ([#52](https://github.com/urothis/nwnrs/pull/52))

### Fixed

- simplify candidate path resolution in discovery module.

### Other

- Add docker and module folders ([#72](https://github.com/urothis/nwnrs/pull/72))
- Refactor NWScript ([#71](https://github.com/urothis/nwnrs/pull/71))
- Add comprehensive tests for MDL model parsing and conversion ([#68](https://github.com/urothis/nwnrs/pull/68))
- update README.md content and enhance library documentation ([#43](https://github.com/urothis/nwnrs/pull/43))
2 changes: 1 addition & 1 deletion crates/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nwnrs-types"
version = "0.0.1"
version = "0.0.2"
edition.workspace = true
publish = true
license.workspace = true
Expand Down
Loading