Skip to content

Commit

Permalink
Merge pull request #38 from A5rocks/release-1.3.0
Browse files Browse the repository at this point in the history
Bump version to 1.3.0
  • Loading branch information
A5rocks authored Oct 17, 2023
2 parents a6144a1 + c3d55a5 commit 645758d
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 14 deletions.
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"

0 comments on commit 645758d

Please sign in to comment.