summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJovansonlee Cesar <ivanceras@gmail.com>2023-04-18 00:20:54 +0800
committerJovansonlee Cesar <ivanceras@gmail.com>2023-04-18 00:20:54 +0800
commit9ceee51ef2c946008e34d16f4b273a29acaef40b (patch)
tree08e264f6d02f0a10f181756156bc444bf288a321
parent61fe42cec61b60faa5d43c08c6d420244ca1097b (diff)
docs: Add changelog0.7.1
-rw-r--r--Changelog.md4
-rw-r--r--packages/svgbob/Cargo.toml6
2 files changed, 7 insertions, 3 deletions
diff --git a/Changelog.md b/Changelog.md
index 8b689a8..7b6999b 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,5 +1,9 @@
# Changelog
+## 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.
+
## 0.7.0
- feat: **Breaking** make all the styles be contained under a .svgbob class, in order to prevent the other svg elements from clashing with other svg elements in the document outside of svgbob svg
- Fixes [Issue #100](https://github.com/ivanceras/svgbob/issues/100)
diff --git a/packages/svgbob/Cargo.toml b/packages/svgbob/Cargo.toml
index ca35ff5..e33d0c6 100644
--- a/packages/svgbob/Cargo.toml
+++ b/packages/svgbob/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "svgbob"
-version = "0.7.0"
+version = "0.7.1"
authors = ["Jovansonlee Cesar <ivanceras@gmail.com>"]
description = "Transform your ascii diagrams into happy little SVG"
repository = "https://github.com/ivanceras/svgbob"
@@ -13,8 +13,8 @@ edition = "2021"
nalgebra = "0.30.1"
parry2d = "0.8.0"
lazy_static = "1.3.0"
-#sauron = { version = "0.52.0", default-features = false}
-sauron = { path = "../../../sauron", default-features = false}
+sauron = { version = "0.52.0", default-features = false}
+#sauron = { path = "../../../sauron", default-features = false}
unicode-width = "0.1.9"
itertools = "0.10.3"
pom = { version = "3.2.0" }