Browse Source

Bump version

master
Dylan Baker 5 years ago
parent
commit
581c794a5a
3 changed files with 3 additions and 4 deletions
  1. 1
    1
      Cargo.lock
  2. 1
    2
      Cargo.toml
  3. 1
    1
      src/main.rs

+ 1
- 1
Cargo.lock View File

@@ -50,7 +50,7 @@ dependencies = [
50 50
 
51 51
 [[package]]
52 52
 name = "casaubon"
53
-version = "0.1.0"
53
+version = "0.1.1"
54 54
 dependencies = [
55 55
  "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
56 56
  "comrak 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",

+ 1
- 2
Cargo.toml View File

@@ -1,12 +1,11 @@
1 1
 [package]
2 2
 name = "casaubon"
3
-version = "0.1.0"
3
+version = "0.1.1"
4 4
 authors = ["Dylan Baker"]
5 5
 description = "A feature-poor static site generator"
6 6
 license = "MIT"
7 7
 readme = "README.md"
8 8
 repository = "https://git.sr.ht/~simulacrumparty/casaubon"
9
-keywords = ["static site generator", "markdown", "html"]
10 9
 
11 10
 [dependencies]
12 11
 clap = "2.32.0"

+ 1
- 1
src/main.rs View File

@@ -20,7 +20,7 @@ mod write;
20 20
 
21 21
 fn main() {
22 22
     let matches = App::new("casaubon")
23
-        .version("0.1.0")
23
+        .version("0.1.1")
24 24
         .author("Dylan Baker")
25 25
         .about("Highly opinionated static site generator")
26 26
         .arg(

Loading…
Cancel
Save