summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJovansonlee Cesar <ivanceras@gmail.com>2023-08-18 18:59:47 +0800
committerJovansonlee Cesar <ivanceras@gmail.com>2023-08-18 18:59:47 +0800
commit4cc73ebe93b784881fdb9b2f97168c9f993609da (patch)
tree4706d342a09a5a976dd17499d2e1dbd25f1b39b2
parent8d6280539137f38a9faf3cdd7ac7c51f4bc7a53a (diff)
publish: prepare for 0.7.2 release
-rw-r--r--Cargo.lock6
-rw-r--r--Changelog.md20
-rw-r--r--packages/svgbob_cli/Cargo.toml2
3 files changed, 27 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index d1dd435..ceb0e5a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -871,6 +871,8 @@ dependencies = [
[[package]]
name = "sauron"
version = "0.60.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b9fc023c46aece3d9c0817dfd2f8731185d377adcbcdda3818db80d37b63e72d"
dependencies = [
"sauron-core",
"sauron-macro",
@@ -879,6 +881,8 @@ dependencies = [
[[package]]
name = "sauron-core"
version = "0.60.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e4996589255eaded656695b4ad63370c3141455198f032825286c6132aff6ce5"
dependencies = [
"cfg-if",
"doc-comment",
@@ -897,6 +901,8 @@ dependencies = [
[[package]]
name = "sauron-macro"
version = "0.60.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b840b18d527a01ba3c9f0d115a87f0005f52a832d35c176ac11d87e08094ac5b"
dependencies = [
"once_cell",
"phf",
diff --git a/Changelog.md b/Changelog.md
index 7b6999b..7feeed5 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,5 +1,25 @@
# Changelog
+## 0.7.2
+- update to sauron 0.60
+- fix: [issue#89](https://github.com/ivanceras/svgbob/issues/89)
+- fix: due to changes in sauron jss
+- local develop branch usually uses local dep version
+- Merge pull request #99 from deining/bump-workflow-actions
+- Merge pull request #101 from Neo-J-A/master
+- use the latest published sauron crate
+- update axum in svgbob server
+- refactor: organize `circle_map`, show the map at the top most
+- chore: replace `lazy_static` with once_cell::Lazy
+- update dep `itertools` and `indexmap`
+- chore: update `nalgebra` 0.30 -> 0.32, `parry2d` 0.8 -> 0.13
+- chore: use the published sauron 0.57.0 version
+- ix: update to newest version of sauron
+- fix: follow the rust conventions for svg tags and attributes
+- update to new version of sauron
+- fix imports due to changes in newest sauron
+- feat: Added `stroke_color` option to CLI
+
## 0.7.1
- Fix: the legend css should also be under `.svgbob` namespace for it to take effect
- Fix: the overly thick marker width of big_open circle letter `O` with stroke-width:1 instead of 2.
diff --git a/packages/svgbob_cli/Cargo.toml b/packages/svgbob_cli/Cargo.toml
index e439917..1563599 100644
--- a/packages/svgbob_cli/Cargo.toml
+++ b/packages/svgbob_cli/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "svgbob_cli"
-version = "0.7.0"
+version = "0.7.2"
authors = ["Jovansonlee Cesar <ivanceras@gmail.com>"]
description = "Transform your ascii diagrams into happy little SVG"
repository = "https://github.com/ivanceras/svgbob"