Skip to content

Commit 538c5ac

Browse files
committed
Adds searchbox, updates deps, closes #3
1 parent 041857f commit 538c5ac

File tree

5 files changed

+45
-38
lines changed

5 files changed

+45
-38
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@ We follow Semantic Versions since the `0.1.0` release.
1010
- Adds `compose` function
1111

1212

13+
### Misc
14+
15+
- Updates multiple dev-dependencies, including `mypy`
16+
- Now search in the docs is working again
17+
- Relicenses this project to `BSD`
18+
- Fixes copyright notice in the docs
19+
20+
1321
## Version 0.4.0 aka Goodbye, Monads!
1422

1523
### Features

docs/conf.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ def _get_project_meta():
3131

3232
pkg_meta = _get_project_meta()
3333
project = pkg_meta['name']
34-
copySuccess = '2019, wemake.services' # noqa: A001
35-
author = 'wemake.services'
34+
copyright = '2019, dry-python team' # noqa: A001
35+
author = 'dry-python team'
3636

3737
# The short X.Y version
3838
version = pkg_meta['version']
@@ -138,6 +138,7 @@ def _get_project_meta():
138138
'logo.html',
139139
'globaltoc.html',
140140
'github.html',
141+
'searchbox.html',
141142
'moreinfo.html',
142143
],
143144
}

docs/pages/functions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ We also ship an utility function to compose two different functions together.
219219
220220
Composition is also type-safe.
221221
The only limitation is that we only support
222-
functions with one argument and one return.
222+
functions with one argument and one return to be composed.
223223

224224
API Reference
225225
-------------

poetry.lock

Lines changed: 33 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup.cfg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ per-file-ignores =
3232
**/*.py: D100, D401, X100
3333
# Disable some `.pyi` specific warings:
3434
**/*.pyi: D101, D102, D103, D107, Z444, Z452
35-
# TODO: fix check and remove it from ignores
36-
**/*.py: Z454
37-
**/*.pyi: Z454
3835

3936

4037
[tool:pytest]

0 commit comments

Comments
 (0)