From 1be7a0c216b7edf2f01853da06392973a94b30a0 Mon Sep 17 00:00:00 2001 From: Grant Ramsay Date: Mon, 2 Sep 2024 14:15:16 +0100 Subject: [PATCH] prep for 0.12.0 release Signed-off-by: Grant Ramsay --- CHANGELOG.md | 8 ++++++-- README.md | 4 ---- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c790f0..99e8e70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ For the original changelog, please refer to the "OLD_CHANGELOG.md" file in the r This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased](https://github.com/seapagan/lice2/tree/HEAD) +## [0.12.0](https://github.com/seapagan/lice2/releases/tag/0.12.0) (September 02, 2024) **New Features** @@ -22,7 +22,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Tweak some of the test layouts and contents ([#32](https://github.com/seapagan/lice2/pull/32)) by [seapagan](https://github.com/seapagan) -[`Full Changelog`](https://github.com/seapagan/lice2/compare/0.11.0...HEAD) | [`Diff`](https://github.com/seapagan/lice2/compare/0.11.0...HEAD.diff) | [`Patch`](https://github.com/seapagan/lice2/compare/0.11.0...HEAD.patch) +**Refactoring** + +- Refactor some of the logic in the CLI ([#35](https://github.com/seapagan/lice2/pull/35)) by [seapagan](https://github.com/seapagan) + +[`Full Changelog`](https://github.com/seapagan/lice2/compare/0.11.0...0.12.0) | [`Diff`](https://github.com/seapagan/lice2/compare/0.11.0...0.12.0.diff) | [`Patch`](https://github.com/seapagan/lice2/compare/0.11.0...0.12.0.patch) ## [0.11.0](https://github.com/seapagan/lice2/releases/tag/0.11.0) (August 28, 2024) diff --git a/README.md b/README.md index 53035c1..83b4390 100644 --- a/README.md +++ b/README.md @@ -259,8 +259,6 @@ falls back to the BSD-3 license. ## Integrate into your projects -**This is currently only available in the dev version.** - Lice now includes an API that can be imported into your Python projects! This allows you to generate licenses from within your project. Here is an example: @@ -277,8 +275,6 @@ more information. ## Integration with other tools -**This is currently only available in the dev version.** - This tool can output a list of availailable licenses and languages in JSON format. This can be used to integrate with other non-Python tools. For example, to get a list of licenses in JSON format: diff --git a/pyproject.toml b/pyproject.toml index f92a072..9041b46 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "lice2" -version = "0.12.0-dev" +version = "0.12.0" description = "Generate license files for your projects" authors = ["Grant Ramsay "] license = "BSD"