summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJovansonlee Cesar <ivanceras@gmail.com>2021-08-20 03:03:32 +0800
committerJovansonlee Cesar <ivanceras@gmail.com>2021-08-20 03:03:32 +0800
commitf9d2b9624f31dd2c02a7ad0c3d397c2f78581cd8 (patch)
treee29de6cb1556f4b436c4f7985e2f2a50cffffc4f
parente74db2d3e62b53470e4089970998eb4e6334c8a2 (diff)
Update to sauron 0.41.00.6.0
-rwxr-xr-x.scripts/publish.sh10
-rw-r--r--Cargo.toml6
-rw-r--r--svgbob/Cargo.toml4
-rw-r--r--svgbob_cli/Cargo.toml4
4 files changed, 17 insertions, 7 deletions
diff --git a/.scripts/publish.sh b/.scripts/publish.sh
new file mode 100755
index 0000000..dfca6ba
--- /dev/null
+++ b/.scripts/publish.sh
@@ -0,0 +1,10 @@
+#!/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 svgbob && cargo publish && cd - && \
+echo "sleeping for 5s" && sleep 5 &&\
+cargo publish
diff --git a/Cargo.toml b/Cargo.toml
index e10e802..d13c62f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,6 +5,6 @@ members = [
]
[patch.crates-io]
-mt-dom = { git = "https://github.com/ivanceras/mt-dom.git", branch = "master" }
-sauron = { git = "https://github.com/ivanceras/sauron.git", branch = "develop" }
-jss = { path = "../jss" }
+#mt-dom = { git = "https://github.com/ivanceras/mt-dom.git", branch = "master" }
+#sauron = { git = "https://github.com/ivanceras/sauron.git", branch = "develop" }
+#jss = { path = "../jss" }
diff --git a/svgbob/Cargo.toml b/svgbob/Cargo.toml
index 63e9065..357d7bf 100644
--- a/svgbob/Cargo.toml
+++ b/svgbob/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "svgbob"
-version = "0.5.5"
+version = "0.6.0"
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.40"}
+sauron = { version = "0.41"}
unicode-width = "0.1.5"
itertools = "0.8.0"
pom = { version = "3.1.0" }
diff --git a/svgbob_cli/Cargo.toml b/svgbob_cli/Cargo.toml
index 1b21630..bbbd358 100644
--- a/svgbob_cli/Cargo.toml
+++ b/svgbob_cli/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "svgbob_cli"
-version = "0.5.4"
+version = "0.6.0"
authors = ["Jovansonlee Cesar <ivanceras@gmail.com>"]
description = "Transform your ascii diagrams into happy little SVG"
repository = "https://github.com/ivanceras/svgbob"
@@ -10,7 +10,7 @@ keywords = ["ascii", "svg", "convert", "bob"]
license = "Apache-2.0"
[dependencies]
-svgbob = { path = "../svgbob", version = "0.5.4" }
+svgbob = { path = "../svgbob", version = "0.6" }
clap = "2.16"