prepare release of version 0.1.0
This commit is contained in:
parent
6e956fbe74
commit
54d8411fc2
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -9,6 +9,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
|
||||||
|
|
||||||
|
## [0.1.0] - 2024-10-01
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
- Datapack struct with compile function
|
- Datapack struct with compile function
|
||||||
- Namespace struct with compile function
|
- Namespace struct with compile function
|
||||||
- Function struct with compile function
|
- Function struct with compile function
|
||||||
|
@ -22,6 +31,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Validate function for checking pack format compatibility
|
- Validate function for checking pack format compatibility
|
||||||
- Virtual file system
|
- Virtual file system
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
### Removed
|
[unreleased]: https://github.com/moritz-hoelting/shulkerbox/compare/v0.1.0...HEAD
|
||||||
|
[0.1.0]: https://github.com/moritz-hoelting/shulkerbox/releases/tag/v0.1.0
|
|
@ -7,7 +7,7 @@ Create datapacks with all the features of rust you like.
|
||||||
Add the following to your dependencies in `Cargo.toml`:
|
Add the following to your dependencies in `Cargo.toml`:
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
shulkerbox = { git = "https://github.com/moritz-hoelting/shulkerbox" }
|
shulkerbox = "0.1.0"
|
||||||
```
|
```
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage
|
||||||
|
|
Loading…
Reference in New Issue