Skip to content

Bump version to 1.3.0 #38

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Oct 17, 2023
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
cache: pip
Expand Down Expand Up @@ -43,9 +43,9 @@ jobs:
extra_name: ', check formatting'
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
if: "!endsWith(matrix.python, '-dev')"
with:
python-version: ${{ matrix.python }}
Expand Down Expand Up @@ -73,9 +73,9 @@ jobs:
python: ['3.7', '3.8', '3.9', '3.10']
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
cache: pip
Expand Down
13 changes: 10 additions & 3 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
version: 2

# https://docs.readthedocs.io/en/latest/yaml-config.html
formats:
- htmlzip
- epub

requirements_file: ci/rtd-requirements.txt
build:
os: ubuntu-22.04
tools:
python: "3"

python:
version: 3
pip_install: True
install:
- requirements: ci/rtd-requirements.txt
- method: pip
path: .
2 changes: 1 addition & 1 deletion ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -ex

YAPF_VERSION=0.20.1

pip install -U pip setuptools wheel
python -m pip install -U pip setuptools wheel

python setup.py sdist --formats=zip
pip install dist/*.zip
Expand Down
11 changes: 11 additions & 0 deletions docs/source/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ Release history

.. towncrier release notes start

Outcome 1.3.0 (2023-10-17)
--------------------------

Features
~~~~~~~~

- Added type hints to the package. :py:class:`Value` and :py:class`Outcome` are now generic.
A type alias was also added (:py:data:`Maybe`) for the union of :py:class:`Value`
and :py:class:`Error`. (`#36 <https://github.com/python-trio/outcome/issues/36>`__)


Outcome 1.2.0 (2022-06-14)
--------------------------

Expand Down
3 changes: 0 additions & 3 deletions newsfragments/36.feature.rst

This file was deleted.

2 changes: 1 addition & 1 deletion src/outcome/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
if TYPE_CHECKING:
from typing_extensions import Final

__version__: 'Final[str]' = "1.2.0+dev"
__version__: 'Final[str]' = "1.3.0+dev"