From 638b081cb75db1cbad1078696159cea35fb10b94 Mon Sep 17 00:00:00 2001 From: Lucas Schwiderski Date: Wed, 1 Mar 2023 22:28:50 +0100 Subject: [PATCH] version: dtmt v0.3.0, dtmm v0.1.0 --- CHANGELOG.adoc | 12 +++++++++--- Cargo.lock | 4 ++-- crates/dtmm/Cargo.toml | 2 +- crates/dtmt/Cargo.toml | 4 ++-- lib/sdk/Cargo.toml | 2 +- 5 files changed, 15 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 840de14..7c100b3 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -2,11 +2,17 @@ == [Unreleased] +== 2023-03-01 + === Added -- show status after adding dictionary entries -- implement building mod bundles -- implement command to create mod project from template +- dtmm: build MVP mod manager GUI and mod loading facilities +- dtmt: show status after adding dictionary entries +- dtmt: implement building mod bundles +- dtmt: implement command to create mod project from template +- sdk: statically link Oodle +- sdk: implement bundle database handling +- sdk: statically link LuaJIT == [v0.2.0] - 2022-12-28 diff --git a/Cargo.lock b/Cargo.lock index 52c1f05..30efb97 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -731,7 +731,7 @@ dependencies = [ [[package]] name = "dtmt" -version = "0.2.0" +version = "0.3.0" dependencies = [ "clap", "cli-table", @@ -2090,7 +2090,7 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" [[package]] name = "sdk" -version = "0.2.0" +version = "0.3.0" dependencies = [ "async-recursion", "bitflags", diff --git a/crates/dtmm/Cargo.toml b/crates/dtmm/Cargo.toml index 3971ee3..6d95e32 100644 --- a/crates/dtmm/Cargo.toml +++ b/crates/dtmm/Cargo.toml @@ -14,7 +14,7 @@ druid = { git = "https://github.com/linebender/druid.git", features = ["im", "se dtmt-shared = { path = "../../lib/dtmt-shared", version = "*" } futures = "0.3.25" oodle = { path = "../../lib/oodle", version = "*" } -sdk = { path = "../../lib/sdk", version = "0.2.0" } +sdk = { path = "../../lib/sdk", version = "*" } serde_sjson = { path = "../../lib/serde_sjson", version = "*" } serde = { version = "1.0.152", features = ["derive", "rc"] } tokio = { version = "1.23.0", features = ["rt", "fs", "tracing", "sync"] } diff --git a/crates/dtmt/Cargo.toml b/crates/dtmt/Cargo.toml index f20e062..ee5d4c4 100644 --- a/crates/dtmt/Cargo.toml +++ b/crates/dtmt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dtmt" -version = "0.2.0" +version = "0.3.0" edition = "2021" [dependencies] @@ -18,7 +18,7 @@ nanorand = "0.7.0" oodle = { path = "../../lib/oodle", version = "*" } pin-project-lite = "0.2.9" promptly = "0.3.1" -sdk = { path = "../../lib/sdk", version = "0.2.0" } +sdk = { path = "../../lib/sdk", version = "*" } serde_sjson = { path = "../../lib/serde_sjson", version = "*" } serde = { version = "1.0.147", features = ["derive"] } string_template = "0.2.1" diff --git a/lib/sdk/Cargo.toml b/lib/sdk/Cargo.toml index 46d02db..d735f36 100644 --- a/lib/sdk/Cargo.toml +++ b/lib/sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sdk" -version = "0.2.0" +version = "0.3.0" edition = "2021" [dependencies]