Skip to content

Commit

Permalink
Merge pull request #40 from wilhelm-lab/release/0.2.0
Browse files Browse the repository at this point in the history
Bump version from 0.1.1 to 0.2.0
  • Loading branch information
picciama authored Feb 5, 2023
2 parents 73b2daf + 4101b7a commit c6b5a50
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .cookietemple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ full_name: Victor Giurcoiu
email: victor.giurcoiu@tum.de
project_name: spectrum_fundamentals
project_short_description: Fundamentals public repo
version: 0.1.1
version: 0.2.0
license: MIT
4 changes: 2 additions & 2 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name-template: "0.1.1 🌈" # <<COOKIETEMPLE_FORCE_BUMP>>
tag-template: 0.1.1 # <<COOKIETEMPLE_FORCE_BUMP>>
name-template: "0.2.0 🌈" # <<COOKIETEMPLE_FORCE_BUMP>>
tag-template: 0.2.0 # <<COOKIETEMPLE_FORCE_BUMP>>
exclude-labels:
- "skip-changelog"

Expand Down
2 changes: 1 addition & 1 deletion cookietemple.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.1
current_version = 0.2.0

[bumpversion_files_whitelisted]
init_file = spectrum_fundamentals/__init__.py
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
# the built documents.
#
# The short X.Y version.
version = "0.1.1"
version = "0.2.0"
# The full version, including alpha/beta/rc tags.
release = "0.1.1"
release = "0.2.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "spectrum_fundamentals"
version = "0.1.1" # <<COOKIETEMPLE_FORCE_BUMP>>
version = "0.2.0" # <<COOKIETEMPLE_FORCE_BUMP>>
description = "Fundamentals public repo"
authors = ["WassimG <wassim.gabriel@gmail.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion spectrum_fundamentals/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Initialize fundamentals."""
__author__ = "Victor Giurcoiu"
__email__ = "victor.giurcoiu@tum.de"
__version__ = "0.1.1"
__version__ = "0.2.0"

import logging
import logging.handlers
Expand Down
2 changes: 1 addition & 1 deletion spectrum_fundamentals/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


@click.command()
@click.version_option(version="0.1.1", message=click.style("spectrum_fundamentals Version: 0.1.1"))
@click.version_option(version="0.2.0", message=click.style("spectrum_fundamentals Version: 0.2.0"))
def main() -> None:
"""spectrum_fundamentals."""

Expand Down

0 comments on commit c6b5a50

Please sign in to comment.