瀏覽代碼

:sparkles: hopefully got everything setup for publishing docs as well

Felix Bytow 2 年之前
父節點
當前提交
2fa86f7403
共有 5 個文件被更改,包括 11 次插入4 次删除
  1. 3 1
      .gitignore
  2. 4 0
      CHANGELOG.md
  3. 1 1
      Cargo.toml
  4. 2 1
      README.md
  5. 1 1
      src/main.rs

+ 3 - 1
.gitignore

@@ -10,4 +10,6 @@
 .idea/
 
 # local scripts
-*.sh
+/*.sh
+/*.py
+/venv/

+ 4 - 0
CHANGELOG.md

@@ -1,5 +1,9 @@
 # Changelog
 
+## Release 0.1.1
+
+- Still setting stuff up.
+
 ## Release 0.1.0
 
 - Initial project setup

+ 1 - 1
Cargo.toml

@@ -4,7 +4,7 @@ authors = ["Felix Bytow <drako@drako.guru>"]
 description = "Snake game using the Bevy Engine"
 license = "MIT"
 repository = "https://git.drako.guru/drako/bevy-snake"
-version = "0.1.0"
+version = "0.1.1"
 edition = "2021"
 publish = ["crates-drako-guru"]
 

+ 2 - 1
README.md

@@ -1,6 +1,7 @@
 # bevy-snake
 
 [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
-[![Version: 0.1.0](https://img.shields.io/badge/crates.drako.guru-v0.1.0-blue)](https://crates.drako.guru/#/crate?name=bevy-snake&version=0.1.0)
+[![Version: 0.1.1](https://img.shields.io/badge/crates.drako.guru-v0.1.1-blue)](https://crates.drako.guru/#/crate?name=bevy-snake&version=0.1.1)
+[![Documentation](https://img.shields.io/badge/documentation-v0.1.1-lightgrey)](https://crates.drako.guru/docs/bevy-snake/0.1.1/doc/bevy-snake/index.html)
 
 A snake game in Rust using the [Bevy Engine](https://bevyengine.org/).

+ 1 - 1
src/main.rs

@@ -1,3 +1,3 @@
 fn main() {
-    println!("Hello, world!");
+    println!("The answer is {}.", 6 * 7);
 }