Skip to content

Commit 3e13cb6

Browse files
author
César Román
committed
chore(release): prepare for v2023.1.0
1 parent 3386091 commit 3e13cb6

File tree

3 files changed

+14
-17
lines changed

3 files changed

+14
-17
lines changed

Diff for: CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v2023.1.0 (2023-01-09)
2+
3+
### Refactor
4+
5+
- add call to super in base classes (#111)
6+
- **ci**: run on ubuntu-20.04 (#98)
7+
18
## v2022.9.2 (2022-09-21)
29

310
### Refactor

Diff for: README.md

+6-16
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ This will install it as package to your Python installation, which will allow yo
6161

6262
```bash
6363
$ python2
64-
Python 2.7.18 (default, Nov 9 2020, 16:23:15)
64+
Python 2.7.18 (default, Nov 9 2020, 16:23:15)
6565
[GCC Apple LLVM 12.0.0 (clang-1200.0.32.21)] on darwin
6666
Type "help", "copyright", "credits" or "license" for more information.
6767
>>> from __future__ import print_function
@@ -93,7 +93,7 @@ To include `incendium` as a dependency in PyCharm, you will need to attach it to
9393
3. Choose `Attach` when prompted
9494
4. Under the `incendium` project folder, right-click on the `src/` folder and choose `Mark Directory as > Sources Root`
9595

96-
#### Installing incendium as a Project on your Gateway
96+
#### Installing `incendium` as a Project on your Gateway
9797

9898
To install incendium on your Gateway follow these steps:
9999

@@ -107,19 +107,9 @@ To install incendium on your Gateway follow these steps:
107107

108108
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).
109109

110-
## Contributing to incendium
110+
## Contributing to `incendium`
111111

112-
To contribute to incendium, follow these steps:
113-
114-
1. Fork this repository
115-
2. Create a local copy on your machine
116-
3. Create a branch
117-
4. Make sure to run `pre-commit install` to install required pre-commit hooks
118-
5. Make your changes and commit them
119-
6. Push to the `code` branch
120-
7. Create the pull request
121-
122-
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).
112+
See [CONTRIBUTING.md](./CONTRIBUTING.md).
123113

124114
## Discussions
125115

@@ -133,8 +123,8 @@ Up-to-date list of contributors can be found [here](https://github.com/thecesrom
133123

134124
## License
135125

136-
See the [LICENSE](https://github.com/thecesrom/incendium/blob/HEAD/LICENSE).
126+
See [LICENSE](./LICENSE).
137127

138128
## Code of conduct
139129

140-
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
130+
See [CODE_OF_CONDUCT.md](./CODE_OF_CONDUCT.md).

Diff for: src/incendium/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version module."""
22

3-
__version__ = "2022.9.2"
3+
__version__ = "2023.1.0"

0 commit comments

Comments
 (0)