Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.14.1.post0 #152

Merged
merged 21 commits into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
80551f4
Merge pull request #145 from casework/release-0.14.1
kchason Dec 22, 2023
54d14a5
Run and apply pre-commit autoupdate
ajnelson-nist Jan 8, 2024
603c5c2
Bump versions
ajnelson-nist Jan 8, 2024
78166a2
Merge branch 'release-0.8.1.post0' into support-0.8.x
ajnelson-nist Jan 8, 2024
92544b3
Merge branch 'support-0.8.x' into release-0.9.1.post0
ajnelson-nist Jan 8, 2024
c0061e9
Bump version
ajnelson-nist Jan 8, 2024
775a202
Merge branch 'release-0.9.1.post0' into support-0.9.x
ajnelson-nist Jan 8, 2024
d8e503f
Merge branch 'support-0.9.x' into release-0.10.1.post0
ajnelson-nist Jan 8, 2024
bfdcd0a
Bump versions
ajnelson-nist Jan 8, 2024
a2edf59
Merge branch 'release-0.10.1.post0' into support-0.10.x
ajnelson-nist Jan 8, 2024
45107d1
Merge branch 'support-0.10.x' into release-0.11.1.post0
ajnelson-nist Jan 8, 2024
44a9534
Bump version
ajnelson-nist Jan 8, 2024
ad8cf03
Merge branch 'release-0.11.1.post0' into support-0.11.x
ajnelson-nist Jan 8, 2024
562d0a1
Merge branch 'support-0.11.x' into release-0.12.1.post0
ajnelson-nist Jan 8, 2024
4c9d545
Bump versions
ajnelson-nist Jan 8, 2024
b82238b
Merge branch 'release-0.12.1.post0' into support-0.12.x
ajnelson-nist Jan 8, 2024
7f2b230
Merge branch 'support-0.12.x' into release-0.13.1.post0
ajnelson-nist Jan 8, 2024
9669172
Bump version
ajnelson-nist Jan 8, 2024
2728768
Merge branch 'release-0.13.1.post0' into support-0.13.x
ajnelson-nist Jan 8, 2024
6bea130
Merge branch 'support-0.13.x' into release-0.14.1.post0
ajnelson-nist Jan 8, 2024
f0b4915
Bump version
ajnelson-nist Jan 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
repos:
- repo: https://github.com/psf/black
rev: 23.12.0
rev: 23.12.1
hooks:
- id: black
- repo: https://github.com/pycqa/flake8
rev: 6.1.0
rev: 7.0.0
hooks:
- id: flake8
- repo: https://github.com/pycqa/isort
Expand Down
2 changes: 1 addition & 1 deletion case_utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
#
# We would appreciate acknowledgement if the software is used.

__version__ = "0.14.1"
__version__ = "0.14.1.post0"

from . import local_uuid # noqa: F401
2 changes: 1 addition & 1 deletion case_utils/local_uuid.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
The function local_uuid() should be used in code where a user could be expected to opt in to non-random UUIDs.
"""

__version__ = "0.4.0"
__version__ = "0.4.1"

__all__ = ["configure", "local_uuid"]

Expand Down