Skip to content

Commit 645758d

Browse files
authored
Merge pull request #38 from A5rocks/release-1.3.0
Bump version to 1.3.0
2 parents a6144a1 + c3d55a5 commit 645758d

File tree

6 files changed

+29
-14
lines changed

6 files changed

+29
-14
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717
- name: Setup python
18-
uses: actions/setup-python@v2
18+
uses: actions/setup-python@v4
1919
with:
2020
python-version: ${{ matrix.python }}
2121
cache: pip
@@ -43,9 +43,9 @@ jobs:
4343
extra_name: ', check formatting'
4444
steps:
4545
- name: Checkout
46-
uses: actions/checkout@v2
46+
uses: actions/checkout@v4
4747
- name: Setup python
48-
uses: actions/setup-python@v2
48+
uses: actions/setup-python@v4
4949
if: "!endsWith(matrix.python, '-dev')"
5050
with:
5151
python-version: ${{ matrix.python }}
@@ -73,9 +73,9 @@ jobs:
7373
python: ['3.7', '3.8', '3.9', '3.10']
7474
steps:
7575
- name: Checkout
76-
uses: actions/checkout@v2
76+
uses: actions/checkout@v4
7777
- name: Setup python
78-
uses: actions/setup-python@v2
78+
uses: actions/setup-python@v4
7979
with:
8080
python-version: ${{ matrix.python }}
8181
cache: pip

.readthedocs.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
1+
version: 2
2+
13
# https://docs.readthedocs.io/en/latest/yaml-config.html
24
formats:
35
- htmlzip
46
- epub
57

6-
requirements_file: ci/rtd-requirements.txt
8+
build:
9+
os: ubuntu-22.04
10+
tools:
11+
python: "3"
712

813
python:
9-
version: 3
10-
pip_install: True
14+
install:
15+
- requirements: ci/rtd-requirements.txt
16+
- method: pip
17+
path: .

ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -ex
44

55
YAPF_VERSION=0.20.1
66

7-
pip install -U pip setuptools wheel
7+
python -m pip install -U pip setuptools wheel
88

99
python setup.py sdist --formats=zip
1010
pip install dist/*.zip

docs/source/history.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ Release history
55

66
.. towncrier release notes start
77
8+
Outcome 1.3.0 (2023-10-17)
9+
--------------------------
10+
11+
Features
12+
~~~~~~~~
13+
14+
- Added type hints to the package. :py:class:`Value` and :py:class`Outcome` are now generic.
15+
A type alias was also added (:py:data:`Maybe`) for the union of :py:class:`Value`
16+
and :py:class:`Error`. (`#36 <https://github.com/python-trio/outcome/issues/36>`__)
17+
18+
819
Outcome 1.2.0 (2022-06-14)
920
--------------------------
1021

newsfragments/36.feature.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/outcome/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
if TYPE_CHECKING:
55
from typing_extensions import Final
66

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

0 commit comments

Comments
 (0)