Skip to content

Commit

Permalink
Release 1.0.0 (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdno authored Oct 20, 2021
1 parent 652e454 commit 5283d18
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
15 changes: 9 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0] - 2021-10-20

### Removed

- Remove `Filter` from the crate's public interface
- Remove `Filter` from the crate's public interface ([#13](https://github.com/jdno/godot-logger/pull/13))

## [0.3.0]
## [0.3.0] - 2021-10-19

### Changed

- Replace `init` function with a builder pattern
- Replace `init` function with a builder pattern ([#11](https://github.com/jdno/godot-logger/pull/11))

## [0.2.0]
## [0.2.0] - 2021-10-04

### Added

- Include module name in log output (#7)
- Include module name in log output ([#7](https://github.com/jdno/godot-logger/pull/7))

## [0.1.0] - 2021-09-25

### Added

- Implement simple logger that prints messages to the output console in Godot

[unreleased]: https://github.com/jdno/godot-logger/compare/v0.3.0...HEAD
[unreleased]: https://github.com/jdno/godot-logger/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/jdno/godot-logger/releases/tag/v1.0.0
[0.3.0]: https://github.com/jdno/godot-logger/releases/tag/v0.3.0
[0.2.0]: https://github.com/jdno/godot-logger/releases/tag/v0.2.0
[0.1.0]: https://github.com/jdno/godot-logger/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "godot-logger"
version = "0.3.0"
version = "1.0.0"
edition = "2018"

description = "A logger for godot-rust projects that prints logs using the godot_print! macro"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Start by adding [`godot-logger`] and [`log`] as dependencies to your project's

```toml
[dependencies]
godot-logger = "0.3.0"
godot-logger = "1.0.0"
log = "0.4"
```

Expand Down

0 comments on commit 5283d18

Please sign in to comment.