Skip to content

Commit

Permalink
chore(release): prepare for v2023.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarcoatl committed Jan 10, 2023
1 parent 3386091 commit 3e13cb6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 17 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
22 changes: 6 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:

Expand All @@ -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

Expand All @@ -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).
2 changes: 1 addition & 1 deletion src/incendium/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version module."""

__version__ = "2022.9.2"
__version__ = "2023.1.0"

0 comments on commit 3e13cb6

Please sign in to comment.