diff --git a/CHANGELOG.md b/CHANGELOG.md index ce6eda2..f0ff669 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,24 @@ # Changelog +## [0.6.0](https://github.com/tamdaz/cruml/releases/tag/0.6.0) - 2025-02-24 + +## Added + +* Add an interface (@tamdaz)(#16) + +## Changed + +* Rename the `#find_by_name!` static method to `#find_by_name` (@tamdaz)(#15) + +## Fixed + +* Add missing code to set a module as an interface (@tamdaz)(#18) +* Namespace did not accept special characters (@tamdaz)(#14) +* Fix namespaces (@tamdaz)(#17) + ## [0.5.0](https://github.com/tamdaz/cruml/releases/tag/0.5.0) - 2025-02-22 -**BREAKING CHANGE**: cruml is no longer a library, this is now a exectuable tool. +**BREAKING CHANGE**: cruml is no longer a library, this is now an exectuable tool. ## Added diff --git a/shard.yml b/shard.yml index f79674e..227c2c6 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: cruml -version: 0.5.0 +version: 0.6.0 description: | A library that provides an UML class diagram for any Crystal projects. diff --git a/src/cruml.cr b/src/cruml.cr index d6a011c..d9bf67e 100644 --- a/src/cruml.cr +++ b/src/cruml.cr @@ -4,5 +4,5 @@ require "./console" # This is useful for any Crystal projects. # > Cruml uses the compiler API to retrieve the Crystal code. module Cruml - VERSION = "0.5.0" + VERSION = "0.6.0" end