Skip to content

Commit

Permalink
Bump version: 1.1.0 → 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GuyTeichman committed Jan 16, 2024
1 parent fdcab09 commit 921bd1c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 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 = 1.1.0
current_version = 1.1.1
commit = True
tag = False

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pyinstaller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,17 @@ jobs:
CMD_BUILD: >
pyinstaller DoubleBlind.spec &&
cd dist/ &&
zip -r DoubleBlind-1.1.0_macos.zip ./DoubleBlind* &&
zip -r DoubleBlind-1.1.1_macos.zip ./DoubleBlind* &&
ls -ltr
OUT_FILE_NAME: DoubleBlind-1.1.0_macos.zip
OUT_FILE_NAME: DoubleBlind-1.1.1_macos.zip
ASSET_MIME: application/zip
- os: windows-latest
TARGET: windows
CMD_BUILD: >
pyinstaller DoubleBlind.spec &&
cd dist/ &&
7z a DoubleBlind-1.1.0_windows.zip -r "DoubleBlind.exe"
OUT_FILE_NAME: DoubleBlind-1.1.0_windows.zip
7z a DoubleBlind-1.1.1_windows.zip -r "DoubleBlind.exe"
OUT_FILE_NAME: DoubleBlind-1.1.1_windows.zip
ASSET_MIME: application/zip
steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion DoubleBlind.spec
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@ exe = EXE(
# strip=False,
# upx=True,
# upx_exclude=[],
# name='DoubleBlind-1.1.0',
# name='DoubleBlind-1.1.1',
# )
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
author = 'Guy Teichman'

# The full version, including alpha/beta/rc tags
release = '1.1.0'
release = '1.1.1'

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion doubleblind/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '1.1.0'
__version__ = '1.1.1'
__all__ = ['gui', 'blinding', 'utils', 'main']
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "doubleblind" # Required
version = "1.1.0" # Required
version = "1.1.1" # Required
description = "Automatically and reversibly replace file names with random strings to help experimenters quantify microscopy experiments blindly and maintain experimental integrity."
readme = "README.rst" # Optional
requires-python = ">=3.8"
Expand Down

0 comments on commit 921bd1c

Please sign in to comment.