Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ RUN python3.10 -m venv /venv \
ENV PYTHON=python3.10 \
VIRTUAL_ENV="/venv" \
PATH="/venv/bin:$PATH" \
PYTHONDONTWRITEBYTECODE=1
PYTHONDONTWRITEBYTECODE=1 \
TZ=UTC

WORKDIR /src
13 changes: 8 additions & 5 deletions NEWS.rst
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
.. note
You should *NOT* add new change log entries to this file, this
file is managed by towncrier. You *may* edit previous change logs to
fix problems like typo corrections or such.
You should *NOT* add new change log entries to this file, this
file is managed by towncrier. You *may* edit previous change logs to
fix problems like typo corrections or such.

Changelog
=========

.. towncrier release notes start


pystack 1.0.1 (2023-04-11)
==========================
--------------------------

No significant changes.


pystack 1.0.0 (2023-04-06)
==========================
--------------------------

- Initial release.
1 change: 1 addition & 0 deletions docs/changelog.rst
6 changes: 6 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ Contents
corefile
customizing_the_reports

.. toctree::
:hidden:
:caption: Project Information

changelog


Indices and tables
------------------
Expand Down
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ package = "pystack"
package_dir = "src"
filename = "NEWS.rst"
directory = "news"
type = [
{ name = "Features", directory = "feature", showcontent = true },
{ name = "Deprecations and Removals", directory = "removal", showcontent = true },
{ name = "Bug Fixes", directory = "bugfix", showcontent = true },
{ name = "Improved Documentation", directory = "doc", showcontent = true },
{ name = "Miscellaneous", directory = "misc", showcontent = true },
]
underlines = "-~"

[tool.cibuildwheel]
build = ["cp38-*", "cp39-*", "cp310-*", "cp311-*"]
Expand Down