Skip to content

Commit

Permalink
Merge pull request #163 from nils-braun/release-v0.7.5
Browse files Browse the repository at this point in the history
Release v0.7.5
  • Loading branch information
meliache authored Jan 21, 2022
2 parents 206991f + 7b49795 commit 4362642
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.7.4
current_version = 0.7.5
commit = True
tag = True

Expand Down
23 changes: 19 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,35 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [0.7.5] - 2022-01-21

### Added
* HTCondor: Do up to 3 retries for getting job status with `condor_q`
* **htcondor**: Do up to 3 retries for getting job status with `condor_q` #155
* **gbasf2**: Add caching and unit tests to `get_dirac_user` #156
* Add @mschnepf to [the contributors](https://github.com/nils-braun/b2luigi/blob/main/docs/index.rst#the-team) for #158
* Some minor documentation improvements #151 and typo fix in help message #153.

### Fixed
* **gbasf2**: Adapt to new file name for gbasf2 setup file (`setup``setup.sh`) #160
* **gbasf2**: Ensure proxy is initalized before running `get_proxy_info` to get dirac user #156
* **htcondor**: Don't fail when htcondor job status is `suspended` or `transferring_output` #158. Thanks to @mschnepf 🙇.

### Changed
* **gbasf2**: Use `retry2` package for retrying getting of gbasf2 project status instead of my own recursive loop #161

**Full Changelog**: https://github.com/nils-braun/b2luigi/compare/v0.7.4...v0.7.5

## [0.7.4] - 2021-11-03

### Added
* Add a `CHANGELOG.md` file in addition to the release notes on github

### Fixed
* gbasf2: Fix moving of downloaded datasets with multiple datablocks (subs) #150
* gbasf2: If an error happens during proxy initialization, there was an error raised, but the `stderr` argument was wrong, which was fixed in #149
* **gbasf2**: Fix moving of downloaded datasets with multiple datablocks (subs) #150
* **gbasf2**: If an error happens during proxy initialization, there was an error raised, but the `stderr` argument was wrong, which was fixed in #149

### Changed
* gbasf2: `get_unique_lfns` in some cases returned a set and in some cases a list. Changed it to always return sets.
* **gbasf2**: `get_unique_lfns` in some cases returned a set and in some cases a list. Changed it to always return sets.


## [0.7.3] - 2021-10-21
Expand Down
2 changes: 1 addition & 1 deletion b2luigi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# version must be defined after importing the luigi namespace,
# otherwise the b2luigi.__version__ gets overwritten by the one from luigi
__version__ = "0.7.4"
__version__ = "0.7.5"

from b2luigi.core.parameter import wrap_parameter, BoolParameter
from typing import Optional, Union, Collection
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '0.7.4'
release = '0.7.5'


# -- General configuration ---------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ Stolen ideas
.. _`anselmbaur`: https://github.com/anselm-baur
.. _`sognetic`: https://github.com/sognetic
.. _`ArturAkh`: https://github.com/ArturAkh
.. _`mschnepf`: https://github.com/mschnepf
.. _`sge`: https://github.com/spotify/luigi/blob/master/luigi/contrib/sge.py
.. _`lsf`: https://github.com/spotify/luigi/pull/2373/files

Expand Down

0 comments on commit 4362642

Please sign in to comment.