Skip to content

Commit

Permalink
Merge pull request #83 from wilhelm-lab/release/0.5.0
Browse files Browse the repository at this point in the history
Release/0.5.0
  • Loading branch information
picciama authored Dec 18, 2023
2 parents 0b1705b + 2e9ad75 commit 1fbddfa
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 17 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.4.4
version: 0.5.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.4.4 🌈" # <<COOKIETEMPLE_FORCE_BUMP>>
tag-template: 0.4.4 # <<COOKIETEMPLE_FORCE_BUMP>>
name-template: "0.5.0 🌈" # <<COOKIETEMPLE_FORCE_BUMP>>
tag-template: 0.5.0 # <<COOKIETEMPLE_FORCE_BUMP>>
exclude-labels:
- "skip-changelog"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sync_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:

- uses: oleksiyrudenko/gha-git-credentials@v2.1
with:
name: "victorgiurcoiu"
email: "victor.giurcoiu@tum.de"
actor: "victorgiurcoiu"
name: "Mario Picciani"
email: "mario.picciani@tum.de"
actor: "picciama"
token: "${{ secrets.CT_SYNC_TOKEN}}"

- name: Sync project
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022, Victor Giurcoiu
Copyright (c) 2023, Wilhelmlab at Technical University of Munich

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
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.4.4
current_version = 0.5.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 @@ -54,9 +54,9 @@
# the built documents.
#
# The short X.Y version.
version = "0.4.4"
version = "0.5.0"
# The full version, including alpha/beta/rc tags.
release = "0.4.4"
release = "0.5.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tool.poetry]
name = "spectrum_fundamentals"
version = "0.4.4" # <<COOKIETEMPLE_FORCE_BUMP>>
description = "Fundamentals public repo"
authors = ["WassimG <wassim.gabriel@gmail.com>"]
version = "0.5.0" # <<COOKIETEMPLE_FORCE_BUMP>>
description = "Fundamental functions, annotation pipeline and constants for oktoberfest"
authors = ["Wilhelmlab at Technical University of Munich"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/wilhelm-lab/spectrum_fundamentals"
Expand Down
6 changes: 3 additions & 3 deletions 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.4.4"
__author__ = "Mario Picciani"
__email__ = "mario.picciani@tum.de"
__version__ = "0.5.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.4.4", message=click.style("spectrum_fundamentals Version: 0.4.4"))
@click.version_option(version="0.5.0", message=click.style("spectrum_fundamentals Version: 0.5.0"))
def main() -> None:
"""spectrum_fundamentals."""

Expand Down
1 change: 1 addition & 0 deletions spectrum_fundamentals/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@
"MASS_ANALYZER",
"FRAGMENTATION",
"COLLISION_ENERGY",
"INSTRUMENT_TYPES",
]
MZML_DATA_COLUMNS = SHARED_DATA_COLUMNS + MZML_ONLY_DATA_COLUMNS

Expand Down

0 comments on commit 1fbddfa

Please sign in to comment.