-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
66 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [2.1.2] - 2022-12-01 | ||
|
||
### Added | ||
- `py.typed` file by [@Lunarmagpie](https://github.com/Lunarmagpie) | ||
|
||
### Changed | ||
- `__main__.py:main` now uses `sys.exit` instead of `exit` | ||
- Improved project structure | ||
|
||
### Fixed | ||
- Fixed 4-bit colors being entirely unused by the `__get_ansi` function | ||
|
||
Also thanks to [@Sigmanificient](https://github.com/Sigmanificient) for minor improvements! | ||
|
||
## [2.1.1] - 2022-11-01 | ||
|
||
### Fixed | ||
- Included `dahlia` and `dprint` functions in the module's `__all__` | ||
|
||
## [2.1.0] - 2022-11-01 | ||
|
||
### Added | ||
- 4-bit colors | ||
- Custom marker support | ||
- Legacy `dahlia` and `dprint` functions | ||
- `black` and `isort` as dev dependencies | ||
|
||
## [2.0.0] - 2022-09-24 | ||
|
||
### Added | ||
- Support for the NO_COLOR environment variable | ||
- `Depth` enum for `Dahlia` construction | ||
|
||
### Changed | ||
- Functions `dahlia`, `dprint`, and `dinput` have been replaced by the `Dahlia` class with methods `convert`, `print`, and `input`, respectively | ||
|
||
### Remoevd | ||
- Global `config` variable | ||
|
||
## [1.1.0] - 2022-08-12 | ||
|
||
### Added | ||
- `dinput` function | ||
- `reset` function | ||
- `no_reset` parameter for `dahlia`, `dprint`, `dinput`. | ||
|
||
## [1.0.0] - 2022-07-12 | ||
|
||
Initial release 🎉 | ||
|
||
[1.0.0]: https://github.com/trag1c/Dahlia/releases/tag/1.0.0 | ||
[1.1.0]: https://github.com/trag1c/Dahlia/compare/1.0.0...1.1.0 | ||
[2.0.0]: https://github.com/trag1c/Dahlia/compare/1.1.0...2.0.0 | ||
[2.1.0]: https://github.com/trag1c/Dahlia/compare/2.0.0...2.1.0 | ||
[2.1.1]: https://github.com/trag1c/Dahlia/compare/2.1.0...2.1.1 | ||
[2.1.2]: https://github.com/trag1c/Dahlia/compare/2.1.1...2.1.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "dahlia" | ||
version = "2.1.1" | ||
version = "2.1.2" | ||
description = "A library allowing you to use Minecraft format codes in strings." | ||
authors = ["trag1c <[email protected]>"] | ||
license = "MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters