Skip to content

Commit

Permalink
Merge pull request #9 from BastiTee/feature/release-0.1.0
Browse files Browse the repository at this point in the history
Release 0.1.0
  • Loading branch information
set-leanix authored Jan 10, 2023
2 parents c25ed0c + c00c7a9 commit f59f338
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 1 deletion.
69 changes: 69 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# Changelog

## 0.1.0

* Removed all explicit calls for Python 3 and assuming it everywhere (including project name) [#8](https://github.com/BastiTee/python-boilerplate/pull/8)
* Added a changelog [#9](https://github.com/BastiTee/python-boilerplate/pull/9)

## 0.0.9

* Added support for Python 3.9-3.11
* Updated dependencies

[#6](https://github.com/BastiTee/python-boilerplate/pull/6)
[#7](https://github.com/BastiTee/python-boilerplate/pull/7)

## 0.0.8

* Removed a lot of remaining boilerplate
* Reduced dependencies
* Improved Makefile
* Improve rename script

[#5](https://github.com/BastiTee/python-boilerplate/pull/5)

## 0.0.7

* Introduced black code formatting
* Cleaned up README.md

[#4](https://github.com/BastiTee/python-boilerplate/pull/4)

## 0.0.6

* Migrated from pipenv to poetry
* Introduced matrix testing via Github actions
* Updated configuration files

[#3](https://github.com/BastiTee/python-boilerplate/pull/3)

## 0.0.5

* Add mypy support
* Fix test discovery in VSCode
* Add PyLance support

## 0.0.4

* Fix Intellisense for VScode
* Integrate configuration files

## 0.0.3

* Update boilerplate tooling to 2020

## 0.0.2

First release. Contains support for:

* Flask-based dummy application running on http://localhost:9690
* Basic project/module organization according to https://packaging.python.org
* Makefile-like management script
* pipenv virtual environments
* setup.py-based installer script
* Unit testing with pyTest
* Multicore/-interpreter testing with detox
* Linting (flake8) and code formatting (autopep8) support
* vscode editor configuration including debugging support, unit test discovery and on-save formatting
* Dockerized builds and run with nginx/uwsgi
* Publishing to PyPi.org at https://pypi.org/project/python3-boilerplate/
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "my_module"
version = "0.0.9"
version = "0.1.0"
description = ""
license = "Apache 2.0"
authors = ["Basti Tee <basti.tee@posteo.de>"]
Expand Down

0 comments on commit f59f338

Please sign in to comment.