From 3e13cb6eb42030577ee8f48c4e6e71c5f3153328 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Rom=C3=A1n?= Date: Mon, 9 Jan 2023 16:09:49 -0800 Subject: [PATCH] chore(release): prepare for v2023.1.0 --- CHANGELOG.md | 7 +++++++ README.md | 22 ++++++---------------- src/incendium/version.py | 2 +- 3 files changed, 14 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebc435a..6ffeb76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## v2023.1.0 (2023-01-09) + +### Refactor + +- add call to super in base classes (#111) +- **ci**: run on ubuntu-20.04 (#98) + ## v2022.9.2 (2022-09-21) ### Refactor diff --git a/README.md b/README.md index a40e71f..9c17f91 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ This will install it as package to your Python installation, which will allow yo ```bash $ python2 -Python 2.7.18 (default, Nov 9 2020, 16:23:15) +Python 2.7.18 (default, Nov 9 2020, 16:23:15) [GCC Apple LLVM 12.0.0 (clang-1200.0.32.21)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> from __future__ import print_function @@ -93,7 +93,7 @@ To include `incendium` as a dependency in PyCharm, you will need to attach it to 3. Choose `Attach` when prompted 4. Under the `incendium` project folder, right-click on the `src/` folder and choose `Mark Directory as > Sources Root` -#### Installing incendium as a Project on your Gateway +#### Installing `incendium` as a Project on your Gateway To install incendium on your Gateway follow these steps: @@ -107,19 +107,9 @@ To install incendium on your Gateway follow these steps: Alternatively you could follow the instructions for cloning the `project` branch directly into `$IGNITION_DIR/data/projects` found [here](https://github.com/thecesrom/incendium/tree/project#cloning-this-branch). -## Contributing to incendium +## Contributing to `incendium` -To contribute to incendium, follow these steps: - -1. Fork this repository -2. Create a local copy on your machine -3. Create a branch -4. Make sure to run `pre-commit install` to install required pre-commit hooks -5. Make your changes and commit them -6. Push to the `code` branch -7. Create the pull request - -Alternatively see the GitHub documentation on [creating a pull request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request). +See [CONTRIBUTING.md](./CONTRIBUTING.md). ## Discussions @@ -133,8 +123,8 @@ Up-to-date list of contributors can be found [here](https://github.com/thecesrom ## License -See the [LICENSE](https://github.com/thecesrom/incendium/blob/HEAD/LICENSE). +See [LICENSE](./LICENSE). ## Code of conduct -This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). +See [CODE_OF_CONDUCT.md](./CODE_OF_CONDUCT.md). diff --git a/src/incendium/version.py b/src/incendium/version.py index 6e8961c..7f69dee 100644 --- a/src/incendium/version.py +++ b/src/incendium/version.py @@ -1,3 +1,3 @@ """Version module.""" -__version__ = "2022.9.2" +__version__ = "2023.1.0"