Skip to content

Commit

Permalink
Merge pull request #99 from MatterMiners/release/0.4.2
Browse files Browse the repository at this point in the history
Fixed documentation
  • Loading branch information
eileen-kuehn committed Dec 14, 2020
2 parents a97af0f + 7476fd6 commit 174fda7
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 13 deletions.
9 changes: 2 additions & 7 deletions docs/conf.py
Expand Up @@ -15,21 +15,16 @@
# import os
# import sys
# sys.path.insert(0, os.path.abspath('.'))
import os
import sys

sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
import lapis # noqa: E402


# -- Project information -----------------------------------------------------

project = "lapis"
author = "Eileen Kuehn, Max Fischer"
copyright = f"2019 {author}"
copyright = f"2019-2020 {author}"

# The short X.Y version
version = lapis.__version__
version = "0.4.2"
# The full version, including alpha/beta/rc tags
release = version

Expand Down
5 changes: 5 additions & 0 deletions docs/source/changelog.rst
Expand Up @@ -8,6 +8,11 @@ ChangeLog
0.4 Series
==========

Version [0.4.2] - 2020-12-11
++++++++++++++++++++++++++++

* **[Fixed]** Reference to version in documentation

Version [0.4.1] - 2020-12-11
++++++++++++++++++++++++++++

Expand Down
8 changes: 8 additions & 0 deletions docs/source/changes/99.documentation.yaml
@@ -0,0 +1,8 @@
category: fixed
summary: "Reference to version in documentation"
description: |
The documentation used an old reference to the current LAPIS version. This is
fixed now.
pull requests:
- 99
version: 0.4.2
2 changes: 2 additions & 0 deletions docs/source/changes/versions.yaml
@@ -1,3 +1,5 @@
- semver: 0.4.2
date: '2020-12-11'
- semver: 0.4.1
date: '2020-12-11'
- semver: 0.4.0
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Expand Up @@ -4,10 +4,10 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "lapis-sim"
version = "0.4.1"
version = "0.4.2"
description = "Lapis is an adaptable, performant, and interactive scheduling (Lapis) simulator"
license = "MIT"
authors = ["Eileen Kuehn <eileen.kuehn@kit.edu>", "Max Fischer <max.fischer@kit.edu>"]
authors = ["Eileen Kuehn, Max Fischer <mainekuehn@gmail.com>"]
maintainers = ["MatterMiners <matterminers@lists.kit.edu>"]
readme = "README.rst"
homepage = "https://matterminers.github.io"
Expand Down Expand Up @@ -45,10 +45,10 @@ sphinxcontrib-contentui = { version = "^0.2.5", optional = true }
sphinx-click = { version = "^2.5.0", optional = true }
change-log = { version = "^0.2.0", optional = true }

pytest = ">= 4.3.0"
flake8 = "^3.8.4"
flake8-bugbear = "^20.11.1"
black = { version = "^20.8b1", markers = "implementation_name=='cpython'" }
pytest = { version = ">= 4.3.0", optional = true }
flake8 = { version = "^3.8.4", optional = true }
flake8-bugbear = { version = "^20.11.1", optional = true }
black = { version = "^20.8b1", markers = "implementation_name=='cpython'", optional = true }

[tool.poetry.extras]
doc = [
Expand Down

0 comments on commit 174fda7

Please sign in to comment.