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
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"core": "0.5.0",
"sdk": "0.1.0"
"core": "0.6.0",
"sdk": "0.2.0"
}
4 changes: 2 additions & 2 deletions Cargo.lock

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

8 changes: 8 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.6.0](https://github.com/norgolith/core/compare/norgolith-v0.5.0...norgolith-v0.6.0) (2026-07-02)


### Features

* add templated 404 and 500 error pages ([6604bb7](https://github.com/norgolith/core/commit/6604bb786d915c5ddbe5e18971a9872bd54cae2b)), closes [#94](https://github.com/norgolith/core/issues/94)
* **flake:** add norgolith-plugin-sdk build ([a3ad5d1](https://github.com/norgolith/core/commit/a3ad5d1b63fbfb57ff1ff620e42a1bc5844b702c))

## [0.5.0](https://github.com/norgolith/core/compare/norgolith-v0.4.0...norgolith-v0.5.0) (2026-07-01)


Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.lock

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

2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "norgolith"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
authors = ["NTBBloodbath <bloodbathalchemist@protonmail.com"]
license = "GPL-2.0"
Expand Down
26 changes: 26 additions & 0 deletions sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## [0.2.0](https://github.com/norgolith/core/compare/norgolith-plugin-sdk-v0.1.0...norgolith-plugin-sdk-v0.2.0) (2026-07-02)


### Features

* **flake:** add norgolith-plugin-sdk build ([a3ad5d1](https://github.com/norgolith/core/commit/a3ad5d1b63fbfb57ff1ff620e42a1bc5844b702c))
* **sdk:** build as cdylib for cross-language FFI plugins ([0ae1ee2](https://github.com/norgolith/core/commit/0ae1ee2ed030bfe83e36b7f4b23194c2d0878a8c))
* **sdk:** implement bridge functions and working register_plugin! macro ([48f3f9b](https://github.com/norgolith/core/commit/48f3f9b1eeec076be6b87c36773944395c4ee8e5))


### Refactoring

* **workspace:** migrate to monorepo with core/ and sdk/ crates ([3e27e27](https://github.com/norgolith/core/commit/3e27e273181d2f01af4d2c5b9057b32432f15d1a))


### Documentation

* add manual changelogs for v0.5.0 and SDK v0.1.0 ([cb2a070](https://github.com/norgolith/core/commit/cb2a07055e6bfd620f629eaf46ae781cd0421017))
* document plugins ([0d584d8](https://github.com/norgolith/core/commit/0d584d85ed4a5e97699dd580b52e2512ce476c3a))
* update domain links ([4b0eeb2](https://github.com/norgolith/core/commit/4b0eeb2222ef7908669914ea499efe03d00f5259))


### CI

* remove last-release-sha, tags now match norgolith-v* format ([4b0eeb2](https://github.com/norgolith/core/commit/4b0eeb2222ef7908669914ea499efe03d00f5259))

## 0.1.0 (2026-07-01)


Expand Down
2 changes: 1 addition & 1 deletion sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "norgolith-plugin-sdk"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["NTBBloodbath <bloodbathalchemist@protonmail.com"]
license = "GPL-2.0"
Expand Down
Loading