summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJovansonlee Cesar <ivanceras@gmail.com>2021-08-15 21:23:04 +0800
committerJovansonlee Cesar <ivanceras@gmail.com>2021-08-15 21:23:04 +0800
commit6576f5abb8c9f4b007044c4904ad8059a304438c (patch)
tree8a70e00abed1bde6ed84551fd9115e2bc603c5d6
parenta3d41fbe540aa2a9fb292b6e2597171520e863c5 (diff)
Prepare for 0.5.4 release
-rw-r--r--Cargo.toml4
-rw-r--r--Changelog.md11
-rw-r--r--svgbob/Cargo.toml4
3 files changed, 15 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 69a9fb3..b9adb1b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,5 +5,5 @@ members = [
]
[path.crates-io]
-sauron = { path = "../sauron" }
-mt-dom = { path = "../mt-dom" }
+#sauron = { path = "../sauron" }
+#mt-dom = { path = "../mt-dom" }
diff --git a/Changelog.md b/Changelog.md
index e837b18..b2b6480 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,5 +1,16 @@
# Changelog
+## 0.5.4
+- Update sauron version to `0.40`
+- Use `sauron::jss` macro to simplify creating a css from settings
+- Add a compressed variant to the generated svg
+- Add a little arrowed arc in unicode map
+- Use the `parry2d` as a new new of the old library `ncollide2d`
+
+# 0.5.3
+- Update to the lastest version of `nalgebra` and `ncollide2d`.
+- Add a public function for Rect fragment to determine whether it is using a rounded rectangle or not
+
# 0.5.2
- overhaul circle map algorithm calculating centers and radius based on the circle art(number of cells occupied horizontally), specified edge_case, and offset from top cell to the circle_radius
diff --git a/svgbob/Cargo.toml b/svgbob/Cargo.toml
index a44e7f0..3dd4bbd 100644
--- a/svgbob/Cargo.toml
+++ b/svgbob/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "svgbob"
-version = "0.5.3"
+version = "0.5.4"
authors = ["Jovansonlee Cesar <ivanceras@gmail.com>"]
edition = "2018"
description = "Transform your ascii diagrams into happy little SVG"
@@ -13,7 +13,7 @@ license = "Apache-2.0"
nalgebra = "0.28"
parry2d = "0.6"
lazy_static = "1.3.0"
-sauron = { version = "0.39", path = "../../sauron" }
+sauron = { version = "0.40"}
unicode-width = "0.1.5"
itertools = "0.8.0"
pom = { version = "3.1.0" }