Skip to content

Commit

Permalink
Merge pull request #95 from MatterMiners/release/0.4.0
Browse files Browse the repository at this point in the history
Version change to 0.4.0
  • Loading branch information
eileen-kuehn committed May 12, 2020
2 parents 989b805 + a297184 commit dccf8cf
Show file tree
Hide file tree
Showing 15 changed files with 34 additions and 21 deletions.
11 changes: 5 additions & 6 deletions docs/source/changelog.rst
@@ -1,15 +1,15 @@
.. Created by log.py at 2019-12-12, command
.. Created by log.py at 2020-05-12, command
'/Users/eileenwork/development/work/lapis/venv/lib/python3.7/site-packages/change/__main__.py log docs/source/changes compile --output docs/source/changelog.rst'
based on the format of 'https://keepachangelog.com/'
#########
ChangeLog
#########

Upcoming
========
0.4 Series
==========

Version [Unreleased] - 2019-12-12
+++++++++++++++++++++++++++++++++
Version [0.4.0] - 2020-05-12
++++++++++++++++++++++++++++

* **[Added]** Basic documentation
* **[Added]** Changelog
Expand Down Expand Up @@ -65,4 +65,3 @@ Version [0.1.1] - 2019-10-24
* **[Fixed]** Calculation of used and requested resource ratio
* **[Fixed]** StopIteration handling by Job Generator
* **[Fixed]** Importing of SWF files

5 changes: 3 additions & 2 deletions docs/source/changes/27.documentation.yaml
@@ -1,8 +1,9 @@
category: added
summary: "Basic documentation"
summary: Basic documentation
description: |
LAPIS now includes a basic documentation about the different components and
concepts, importing jobs and pools, the logging process and database structure
as well as the command line interface.
pull requests:
- 27
- 27
version: 0.4.0
3 changes: 2 additions & 1 deletion docs/source/changes/49.htcondor_import_corrections.yaml
Expand Up @@ -4,4 +4,5 @@ description: |
The unit conversion for some of the values from HTCondor jobs did not work
properly as values were overwritten. This is fixed now.
pull requests:
- 49
- 49
version: 0.4.0
3 changes: 2 additions & 1 deletion docs/source/changes/50.black_usage.yaml
Expand Up @@ -4,4 +4,5 @@ description: |
Black does not work when running CI with pypy. The usage of black with pypy
therefore has been removed now.
pull requests:
- 50
- 50
version: 0.4.0
3 changes: 2 additions & 1 deletion docs/source/changes/51.job_input_files.yaml
Expand Up @@ -4,4 +4,5 @@ description: |
In preparation for enabling caching and its effects within the simulation the
support of input files for jobs has been added.
pull requests:
- 51
- 51
version: 0.4.0
3 changes: 2 additions & 1 deletion docs/source/changes/59.unit_standardisation.yaml
Expand Up @@ -4,4 +4,5 @@ description: |
The usage of units was not standardised so far. We now introduced to solely work
with Bytes and use ``int`` for representation throughout the simulation.
pull requests:
- 59
- 59
version: 0.4.0
3 changes: 2 additions & 1 deletion docs/source/changes/63.execution_of_jobs.yaml
Expand Up @@ -8,4 +8,5 @@ description: |
now takes care to properly start the job so that it runs independently now in
the scope of the drone.
pull requests:
- 63
- 63
version: 0.4.0
3 changes: 2 additions & 1 deletion docs/source/changes/66.terminate_simulation.yaml
Expand Up @@ -6,4 +6,5 @@ description: |
now has a new property to store the number of running jobs. So the termination
of the scheduler is now additionally bound to this counter getting ``0``.
pull requests:
- 66
- 66
version: 0.4.0
3 changes: 2 additions & 1 deletion docs/source/changes/69.job_drone_requirement.yaml
Expand Up @@ -4,4 +4,5 @@ description: |
Until now the run method of jobs did not require any parameter. This is changed
now and relies on a parameter for the executing drone.
pull requests:
- 69
- 69
version: 0.4.0
5 changes: 3 additions & 2 deletions docs/source/changes/74.changelog.yaml
@@ -1,6 +1,7 @@
category: added
summary: "Changelog"
summary: Changelog
description: |
The documentation now includes a changelog up to the current version.
pull requests:
- 74
- 74
version: 0.4.0
3 changes: 2 additions & 1 deletion docs/source/changes/76.register_drones.yaml
Expand Up @@ -4,4 +4,5 @@ description: |
At startup drones were registered twice at the scheduler as the method
``register_drone`` was called during initialisation and in ``run``.
pull requests:
- 76
- 76
version: 0.4.0
3 changes: 2 additions & 1 deletion docs/source/changes/79.jobqueue_removal.yaml
Expand Up @@ -5,4 +5,5 @@ description: |
could be removed during scheduling. Now scheduling is performed on a copy
of the job queue.
pull requests:
- 79
- 79
version: 0.4.0
3 changes: 2 additions & 1 deletion docs/source/changes/80.job_cancelation.yaml
Expand Up @@ -5,4 +5,5 @@ description: |
of that job was not properly set as the job was not yet in running state.
This is fixed now by additionally waiting for an `instant`.
pull requests:
- 80
- 80
version: 0.4.0
2 changes: 2 additions & 0 deletions docs/source/changes/versions.yaml
@@ -1,3 +1,5 @@
- semver: 0.4.0
date: '2020-05-12'
- semver: 0.3.0
date: '2019-10-27'
- semver: 0.2.0
Expand Down
2 changes: 1 addition & 1 deletion lapis/__init__.py
@@ -1,3 +1,3 @@
"""Lapis is an adaptable, performant, and interactive scheduling (Lapis) simulator"""

__version__ = "0.3.0"
__version__ = "0.4.0"

0 comments on commit dccf8cf

Please sign in to comment.