Skip to content

Commit aaad83f

Browse files
committed
Version 0.1.1
1 parent c52d924 commit aaad83f

File tree

3 files changed

+49
-4
lines changed

3 files changed

+49
-4
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
We follow Semantic Versions since the `0.1.0` release.
44

55

6+
## Version 0.1.1
7+
8+
### Bugfixes
9+
10+
- Changes how `PyPI` renders package's page
11+
12+
### Misc
13+
14+
- Improves `README` with new badges and installation steps
15+
16+
617
## Version 0.1.0
718

819
Initial release. Featuring only `Result` and `do_notation`.

README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# dry-monads
22

3-
[![wemake.services](https://img.shields.io/badge/%20-wemake.services-green.svg?label=%20&logo=data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC%2FxhBQAAAAFzUkdCAK7OHOkAAAAbUExURQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP%2F%2F%2F5TvxDIAAAAIdFJOUwAjRA8xXANAL%2Bv0SAAAADNJREFUGNNjYCAIOJjRBdBFWMkVQeGzcHAwksJnAPPZGOGAASzPzAEHEGVsLExQwE7YswCb7AFZSF3bbAAAAABJRU5ErkJggg%3D%3D)](https://wemake.services) [![Build Status](https://travis-ci.org/sobolevn/dry-monads.svg?branch=master)](https://travis-ci.org/sobolevn/dry-monads) [![Coverage Status](https://coveralls.io/repos/github/sobolevn/dry-monads/badge.svg?branch=master)](https://coveralls.io/github/sobolevn/dry-monads?branch=master) [![Documentation Status](https://readthedocs.org/projects/dry-monads/badge/?version=latest)](https://dry-monads.readthedocs.io/en/latest/?badge=latest)
3+
[![wemake.services](https://img.shields.io/badge/%20-wemake.services-green.svg?label=%20&logo=data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC%2FxhBQAAAAFzUkdCAK7OHOkAAAAbUExURQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP%2F%2F%2F5TvxDIAAAAIdFJOUwAjRA8xXANAL%2Bv0SAAAADNJREFUGNNjYCAIOJjRBdBFWMkVQeGzcHAwksJnAPPZGOGAASzPzAEHEGVsLExQwE7YswCb7AFZSF3bbAAAAABJRU5ErkJggg%3D%3D)](https://wemake.services) [![Build Status](https://travis-ci.org/sobolevn/dry-monads.svg?branch=master)](https://travis-ci.org/sobolevn/dry-monads) [![Coverage Status](https://coveralls.io/repos/github/sobolevn/dry-monads/badge.svg?branch=master)](https://coveralls.io/github/sobolevn/dry-monads?branch=master) [![Documentation Status](https://readthedocs.org/projects/dry-monads/badge/?version=latest)](https://dry-monads.readthedocs.io/en/latest/?badge=latest) [![Python Version](https://img.shields.io/pypi/pyversions/dry-monads.svg)](https://pypi.org/project/dry-monads/) [![Dependencies Status](https://img.shields.io/badge/dependencies-up%20to%20date-brightgreen.svg)](https://github.com/sobolevn/dry-monads/pulls?utf8=%E2%9C%93&q=is%3Apr%20author%3Aapp%2Fdependabot) [![dry-monads](https://img.shields.io/badge/style-wemake-000000.svg)](https://github.com/sobolevn/dry-monads)
44

55

66
Monads for `python` made simple and safe.
@@ -14,6 +14,14 @@ Monads for `python` made simple and safe.
1414
- No operator overloading or other unpythonic stuff that makes your eyes bleed
1515

1616

17+
## Installation
18+
19+
20+
```bash
21+
pip install dry-monads
22+
```
23+
24+
1725
## What's inside?
1826

1927
We have several the most iconic monads inside:

pyproject.toml

+29-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,38 @@
11
[tool.poetry]
22
name = "dry-monads"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Monads for python made simple and safe."
5-
authors = ["sobolevn <[email protected]>"]
65
license = "MIT"
76

7+
authors = [
8+
"sobolevn <[email protected]>"
9+
]
10+
11+
readme = "README.md"
12+
13+
repository = "https://github.com/sobolevn/dry-monads"
14+
homepage = "https://dry-monads.readthedocs.io"
15+
16+
keywords = [
17+
"functional programming",
18+
"fp",
19+
"monads",
20+
"monad",
21+
"type-safety",
22+
"mypy",
23+
"railway-oriented-programming"
24+
]
25+
26+
classifiers = [
27+
"Development Status :: 3 - Alpha",
28+
"Intended Audience :: Developers",
29+
"Operating System :: OS Independent",
30+
"Topic :: Software Development :: Libraries :: Python Modules",
31+
"Topic :: Utilities"
32+
]
33+
834
[tool.poetry.dependencies]
9-
python = "^3.6 || ^3.7"
35+
python = "^3.6"
1036
typing-extensions = "^3.7"
1137

1238
[tool.poetry.dev-dependencies]

0 commit comments

Comments
 (0)