Skip to content

Commit b78b84e

Browse files
committed
Fixes CI
1 parent 65774b0 commit b78b84e

File tree

6 files changed

+723
-159
lines changed

6 files changed

+723
-159
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ dist: xenial
33

44
python:
55
- 3.6
6-
- 3.7.6
6+
- 3.7.5
77

88

99
before_install:

CHANGELOG.md

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ incremental in minor, bugfixes only are patches.
66
See (0Ver)[https://0ver.org/].
77

88

9-
## 0.13.0 WIP
9+
## 0.12.0 WIP
1010

1111
### Features
1212

1313
- **Breaking**: now `@pipeline` requires a container type when created:
1414
`@pipeline(Result)` or `@pipeline(Maybe)`
15+
- `Maybe` and `Result` now has `success_type` and `failure_type` aliases
16+
- We now support `dry-python/classes` as a first-class citizen
1517
- Adds `io_squash` to squash several `IO` containers into one container
1618
with a tuple inside, currently works with `9` containers max at a time
1719
- Adds `untap` function which does convert return type to `None`
@@ -20,22 +22,12 @@ See (0Ver)[https://0ver.org/].
2022

2123
- Fixes that containers were not usable with `multiprocessing`
2224
- Changes the inheritance order, now `BaseContainer` is the first child
25+
- Fixes that `Nothing` had incorrect docstrings
2326

2427
### Misc
2528

2629
- Now `generated` package is protected
27-
28-
29-
## 0.12.0
30-
31-
### Features
32-
33-
- `Maybe` and `Result` now has `success_type` and `failure_type` aliases
34-
- We now support `dry-python/classes` as a first-class citizen
35-
36-
### Bugfixes
37-
38-
- Fixes that `Nothing` had incorrect docstrings
30+
- Updates `poetry` to `1.0`
3931

4032

4133
## 0.11.0

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2016-2019 dry-python organization
1+
Copyright 2016-2020 dry-python organization
22

33
Redistribution and use in source and binary forms, with or without
44
modification, are permitted provided that the following conditions are

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22

33
-----
44

5-
[![Build Status](https://travis-ci.org/dry-python/returns.svg?branch=master)](https://travis-ci.org/dry-python/returns) [![Coverage Status](https://coveralls.io/repos/github/dry-python/returns/badge.svg?branch=master)](https://coveralls.io/github/dry-python/returns?branch=master) [![Documentation Status](https://readthedocs.org/projects/returns/badge/?version=latest)](https://returns.readthedocs.io/en/latest/?badge=latest) [![Python Version](https://img.shields.io/pypi/pyversions/returns.svg)](https://pypi.org/project/returns/) [![wemake-python-styleguide](https://img.shields.io/badge/style-wemake-000000.svg)](https://github.com/wemake-services/wemake-python-styleguide) [![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
5+
[![Build Status](https://travis-ci.com/dry-python/returns.svg?branch=master)](https://travis-ci.com/dry-python/returns)
6+
[![Coverage Status](https://coveralls.io/repos/github/dry-python/returns/badge.svg?branch=master)](https://coveralls.io/github/dry-python/returns?branch=master)
7+
[![Documentation Status](https://readthedocs.org/projects/returns/badge/?version=latest)](https://returns.readthedocs.io/en/latest/?badge=latest)
8+
[![Python Version](https://img.shields.io/pypi/pyversions/returns.svg)](https://pypi.org/project/returns/)
9+
[![wemake-python-styleguide](https://img.shields.io/badge/style-wemake-000000.svg)](https://github.com/wemake-services/wemake-python-styleguide)
10+
[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
611

712
-----
813

0 commit comments

Comments
 (0)