Author: Manos Pitsidianakis [manos@pitsidianak.is]
Hash: c29a5453263ededf1a67a33dd80dec92e46f6909
Timestamp: Fri, 28 Apr 2023 17:44:46 +0000 (1 year ago)

+20 -20 +/-8 browse
Bump version to 0.1.0
1diff --git a/Cargo.lock b/Cargo.lock
2index b23337c..03fb72b 100644
3--- a/Cargo.lock
4+++ b/Cargo.lock
5 @@ -1768,7 +1768,7 @@ dependencies = [
6
7 [[package]]
8 name = "mailpot"
9- version = "0.0.0+2023-04-21"
10+ version = "0.1.0"
11 dependencies = [
12 "anyhow",
13 "chrono",
14 @@ -1789,7 +1789,7 @@ dependencies = [
15
16 [[package]]
17 name = "mailpot-archives"
18- version = "0.0.0+2023-04-21"
19+ version = "0.1.0"
20 dependencies = [
21 "chrono",
22 "lazy_static",
23 @@ -1804,7 +1804,7 @@ dependencies = [
24
25 [[package]]
26 name = "mailpot-cli"
27- version = "0.0.0+2023-04-21"
28+ version = "0.1.0"
29 dependencies = [
30 "assert_cmd",
31 "clap",
32 @@ -1819,7 +1819,7 @@ dependencies = [
33
34 [[package]]
35 name = "mailpot-http"
36- version = "0.0.0+2023-04-21"
37+ version = "0.1.0"
38 dependencies = [
39 "mailpot",
40 "tokio",
41 @@ -1828,7 +1828,7 @@ dependencies = [
42
43 [[package]]
44 name = "mailpot-tests"
45- version = "0.0.0+2023-04-21"
46+ version = "0.1.0"
47 dependencies = [
48 "assert_cmd",
49 "log",
50 @@ -1841,7 +1841,7 @@ dependencies = [
51
52 [[package]]
53 name = "mailpot-web"
54- version = "0.0.0+2023-04-21"
55+ version = "0.1.0"
56 dependencies = [
57 "axum",
58 "axum-extra",
59 diff --git a/archive-http/Cargo.toml b/archive-http/Cargo.toml
60index 11a868f..b892183 100644
61--- a/archive-http/Cargo.toml
62+++ b/archive-http/Cargo.toml
63 @@ -1,6 +1,6 @@
64 [package]
65 name = "mailpot-archives"
66- version = "0.0.0+2023-04-21"
67+ version = "0.1.0"
68 authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
69 edition = "2021"
70 license = "LICENSE"
71 @@ -23,7 +23,7 @@ path = "src/gen.rs"
72 [dependencies]
73 chrono = { version = "^0.4" }
74 lazy_static = "^1.4"
75- mailpot = { version = "^0.0", path = "../core" }
76+ mailpot = { version = "^0.1", path = "../core" }
77 minijinja = { version = "0.31.0", features = ["source", ] }
78 percent-encoding = { version = "^2.1", optional = true }
79 serde = { version = "^1", features = ["derive", ] }
80 diff --git a/cli/Cargo.toml b/cli/Cargo.toml
81index e0fa1b5..092b22e 100644
82--- a/cli/Cargo.toml
83+++ b/cli/Cargo.toml
84 @@ -1,6 +1,6 @@
85 [package]
86 name = "mailpot-cli"
87- version = "0.0.0+2023-04-21"
88+ version = "0.1.0"
89 authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
90 edition = "2021"
91 license = "LICENSE"
92 @@ -18,12 +18,12 @@ path = "src/main.rs"
93 [dependencies]
94 clap = { version = "^4.2", default-features = false, features = ["derive", "cargo", "unicode", "help", "usage", "error-context", "suggestions"] }
95 log = "0.4"
96- mailpot = { version = "^0.0", path = "../core" }
97+ mailpot = { version = "^0.1", path = "../core" }
98 stderrlog = "^0.5"
99
100 [dev-dependencies]
101 assert_cmd = "2"
102- mailpot-tests = { version = "^0.0", path = "../mailpot-tests" }
103+ mailpot-tests = { version = "^0.1", path = "../mailpot-tests" }
104 predicates = "3"
105 tempfile = "3.3"
106
107 diff --git a/core/Cargo.toml b/core/Cargo.toml
108index 51ab865..127759f 100644
109--- a/core/Cargo.toml
110+++ b/core/Cargo.toml
111 @@ -1,6 +1,6 @@
112 [package]
113 name = "mailpot"
114- version = "0.0.0+2023-04-21"
115+ version = "0.1.0"
116 authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
117 edition = "2021"
118 license = "LICENSE"
119 @@ -24,7 +24,7 @@ toml = "^0.5"
120 xdg = "2.4.1"
121
122 [dev-dependencies]
123- mailpot-tests = { version = "^0.0", path = "../mailpot-tests" }
124+ mailpot-tests = { version = "^0.1", path = "../mailpot-tests" }
125 reqwest = { version = "0.11", default-features = false, features = ["json", "blocking"] }
126 stderrlog = "^0.5"
127 tempfile = "3.3"
128 diff --git a/docs/mpot.1 b/docs/mpot.1
129index 5bd2b28..18f4b91 100644
130--- a/docs/mpot.1
131+++ b/docs/mpot.1
132 @@ -1,6 +1,6 @@
133 .ie \n(.g .ds Aq \(aq
134 .el .ds Aq '
135- .TH mpot 1 "mpot 0.0.0+2023-04-21"
136+ .TH mpot 1 "mpot 0.1.0"
137 .ie \n(.g .ds Aq \(aq
138 .el .ds Aq '
139 .SH NAME
140 diff --git a/mailpot-tests/Cargo.toml b/mailpot-tests/Cargo.toml
141index 3affcf9..bff9d4f 100644
142--- a/mailpot-tests/Cargo.toml
143+++ b/mailpot-tests/Cargo.toml
144 @@ -1,6 +1,6 @@
145 [package]
146 name = "mailpot-tests"
147- version = "0.0.0+2023-04-21"
148+ version = "0.1.0"
149 authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
150 edition = "2021"
151 license = "LICENSE"
152 @@ -13,7 +13,7 @@ publish = false
153 assert_cmd = "2"
154 log = "0.4"
155 mailin-embedded = { version = "0.7", features = ["rtls"] }
156- mailpot = { version = "^0.0", path = "../core" }
157+ mailpot = { version = "^0.1", path = "../core" }
158 predicates = "3"
159 stderrlog = "^0.5"
160 tempfile = "3.3"
161 diff --git a/rest-http/Cargo.toml b/rest-http/Cargo.toml
162index 0f767de..cc818e0 100644
163--- a/rest-http/Cargo.toml
164+++ b/rest-http/Cargo.toml
165 @@ -1,6 +1,6 @@
166 [package]
167 name = "mailpot-http"
168- version = "0.0.0+2023-04-21"
169+ version = "0.1.0"
170 authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
171 edition = "2021"
172 license = "LICENSE"
173 @@ -16,6 +16,6 @@ name = "mpot-http"
174 path = "src/main.rs"
175
176 [dependencies]
177- mailpot = { version = "^0.0", path = "../core" }
178+ mailpot = { version = "^0.1", path = "../core" }
179 tokio = { version = "^1", features = ["full"] }
180 warp = "^0.3"
181 diff --git a/web/Cargo.toml b/web/Cargo.toml
182index 1b8b008..5842522 100644
183--- a/web/Cargo.toml
184+++ b/web/Cargo.toml
185 @@ -1,6 +1,6 @@
186 [package]
187 name = "mailpot-web"
188- version = "0.0.0+2023-04-21"
189+ version = "0.1.0"
190 authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
191 edition = "2021"
192 license = "LICENSE"
193 @@ -30,7 +30,7 @@ eyre = { version = "0.6" }
194 http = "0.2"
195 indexmap = { version = "1.9" }
196 lazy_static = "^1.4"
197- mailpot = { version = "^0.0", path = "../core" }
198+ mailpot = { version = "^0.1", path = "../core" }
199 minijinja = { version = "0.31.0", features = ["source", ] }
200 percent-encoding = { version = "^2.1" }
201 rand = { version = "^0.8", features = ["min_const_gen"] }