File tree 3 files changed +49
-4
lines changed
3 files changed +49
-4
lines changed Original file line number Diff line number Diff line change 3
3
We follow Semantic Versions since the ` 0.1.0 ` release.
4
4
5
5
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
+
6
17
## Version 0.1.0
7
18
8
19
Initial release. Featuring only ` Result ` and ` do_notation ` .
Original file line number Diff line number Diff line change 1
1
# dry-monads
2
2
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
+ [](https://wemake.services) [](https://travis-ci.org/sobolevn/dry-monads) [](https://coveralls.io/github/sobolevn/dry-monads?branch=master) [](https://dry-monads.readthedocs.io/en/latest/?badge=latest) [](https://pypi.org/project/dry-monads/) [](https://github.com/sobolevn/dry-monads/pulls?utf8=%E2%9C%93&q=is%3Apr%20author%3Aapp%2Fdependabot) [](https://github.com/sobolevn/dry-monads)
4
4
5
5
6
6
Monads for ` python ` made simple and safe.
@@ -14,6 +14,14 @@ Monads for `python` made simple and safe.
14
14
- No operator overloading or other unpythonic stuff that makes your eyes bleed
15
15
16
16
17
+ ## Installation
18
+
19
+
20
+ ``` bash
21
+ pip install dry-monads
22
+ ```
23
+
24
+
17
25
## What's inside?
18
26
19
27
We have several the most iconic monads inside:
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " dry-monads"
3
- version = " 0.1.0 "
3
+ version = " 0.1.1 "
4
4
description = " Monads for python made simple and safe."
5
- authors = [
" sobolevn <[email protected] >" ]
6
5
license = " MIT"
7
6
7
+ authors = [
8
+
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
+
8
34
[tool .poetry .dependencies ]
9
- python = " ^3.6 || ^3.7 "
35
+ python = " ^3.6"
10
36
typing-extensions = " ^3.7"
11
37
12
38
[tool .poetry .dev-dependencies ]
You can’t perform that action at this time.
0 commit comments