summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJSDurand <mmemmew@gmail.com>2023-07-21 16:30:25 +0800
committerJSDurand <mmemmew@gmail.com>2023-07-21 16:30:25 +0800
commitffb6e689d28d295733b90f2b9e184205e33f19c2 (patch)
treefcdb2b298d2737eeeff4969f7e428c5b7cfd770c
parent201830e33ab5c45044e960217e0ac8803e3e134d (diff)
Bump version number to 0.1.20.1.2
I have fixed another bug and think that the version of a more stable version is worth bumping the versions for.
-rw-r--r--Cargo.toml2
-rw-r--r--chain/Cargo.toml2
-rw-r--r--forest/Cargo.toml2
-rw-r--r--grammar/Cargo.toml2
-rw-r--r--graph/Cargo.toml2
-rw-r--r--graph_macro/Cargo.toml2
-rw-r--r--nfa/Cargo.toml2
-rw-r--r--receme/Cargo.toml1
-rw-r--r--semiring/Cargo.toml1
9 files changed, 10 insertions, 6 deletions
diff --git a/Cargo.toml b/Cargo.toml
index df78aac..071575e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rep"
-version = "0.1.1"
+version = "0.1.2"
edition = "2021"
authors = ["JSDurand <durand@jsdurand.xyz>"]
description = "Rust, Emacs, and Parsers"
diff --git a/chain/Cargo.toml b/chain/Cargo.toml
index b17c50d..d356d65 100644
--- a/chain/Cargo.toml
+++ b/chain/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "chain"
-version = "0.1.0"
+version = "0.1.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
diff --git a/forest/Cargo.toml b/forest/Cargo.toml
index c51bf36..8cc445b 100644
--- a/forest/Cargo.toml
+++ b/forest/Cargo.toml
@@ -13,3 +13,5 @@ test-print-viz = []
[dependencies]
graph = { path = "../graph" }
+
+# This should be integrated in the package, but it is not yet done. \ No newline at end of file
diff --git a/grammar/Cargo.toml b/grammar/Cargo.toml
index 793ab5a..535b3f5 100644
--- a/grammar/Cargo.toml
+++ b/grammar/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grammar"
-version = "0.1.0"
+version = "0.1.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
diff --git a/graph/Cargo.toml b/graph/Cargo.toml
index d8f0622..3371208 100644
--- a/graph/Cargo.toml
+++ b/graph/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "graph"
-version = "0.1.0"
+version = "0.1.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
diff --git a/graph_macro/Cargo.toml b/graph_macro/Cargo.toml
index 6e96140..198bc0f 100644
--- a/graph_macro/Cargo.toml
+++ b/graph_macro/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "graph_macro"
-version = "0.1.0"
+version = "0.1.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
diff --git a/nfa/Cargo.toml b/nfa/Cargo.toml
index 75a6a43..b086748 100644
--- a/nfa/Cargo.toml
+++ b/nfa/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "nfa"
-version = "0.1.0"
+version = "0.1.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
diff --git a/receme/Cargo.toml b/receme/Cargo.toml
index dccf28c..5627777 100644
--- a/receme/Cargo.toml
+++ b/receme/Cargo.toml
@@ -7,3 +7,4 @@ edition = "2021"
[dependencies]
+# This is mostly obsolete now.
diff --git a/semiring/Cargo.toml b/semiring/Cargo.toml
index caf6cb0..d62eea6 100644
--- a/semiring/Cargo.toml
+++ b/semiring/Cargo.toml
@@ -11,3 +11,4 @@ grammar = { path = "../grammar" }
[dev-dependencies]
grammar = { path = "../grammar", features = ["test-helper"] }
+# TODO