summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJovansonlee Cesar <ivanceras@gmail.com>2023-04-15 13:22:35 +0800
committerJovansonlee Cesar <ivanceras@gmail.com>2023-04-15 13:22:35 +0800
commita442dcbad0103b276fdc26109b78fcb325491c73 (patch)
tree0757766e21c3ad8e3ec2d48f874969541b77596a
parent4eb44d8e097119f28c5b9a634aed75897e0dcd0d (diff)
release: prepare for 0.7.0 release0.7.0
-rwxr-xr-x.scripts/publish.sh3
-rw-r--r--Changelog.md2
-rw-r--r--packages/svgbob/Cargo.toml6
-rw-r--r--packages/svgbob_cli/Cargo.toml4
4 files changed, 6 insertions, 9 deletions
diff --git a/.scripts/publish.sh b/.scripts/publish.sh
index cbe99e5..ac7da41 100755
--- a/.scripts/publish.sh
+++ b/.scripts/publish.sh
@@ -1,10 +1,7 @@
#!/bin/sh
# script to publish the crates
-# we added a 5s sleep in between publish to give time for dependency crate to propagate to crates.io
-#
set -ev
cd packages/svgbob && cargo publish && cd - && \
-echo "sleeping" && sleep 20 &&\
cd packages/svgbob_cli && cargo publish && cd -
diff --git a/Changelog.md b/Changelog.md
index f0007f9..8b689a8 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,6 +1,6 @@
# Changelog
-## Unreleased
+## 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)
- feat: remove multiple Polygon tag for arrow characters
diff --git a/packages/svgbob/Cargo.toml b/packages/svgbob/Cargo.toml
index 7a5dc80..4c8f94a 100644
--- a/packages/svgbob/Cargo.toml
+++ b/packages/svgbob/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "svgbob"
-version = "0.6.7"
+version = "0.7.0"
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.51", 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" }
diff --git a/packages/svgbob_cli/Cargo.toml b/packages/svgbob_cli/Cargo.toml
index bb3d857..e439917 100644
--- a/packages/svgbob_cli/Cargo.toml
+++ b/packages/svgbob_cli/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "svgbob_cli"
-version = "0.6.6"
+version = "0.7.0"
authors = ["Jovansonlee Cesar <ivanceras@gmail.com>"]
description = "Transform your ascii diagrams into happy little SVG"
repository = "https://github.com/ivanceras/svgbob"
@@ -11,7 +11,7 @@ license = "Apache-2.0"
edition = "2021"
[dependencies]
-svgbob = { path = "../svgbob", version = "0.6" }
+svgbob = { path = "../svgbob", version = "0.7" }
clap = "2.16"