Skip to content

Commit 664a01d

Browse files
author
David Stirling
committed
v3.0.1
1 parent b338b82 commit 664a01d

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

.github/workflows/release.yml

+13-13
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
CERTIFICATE_PASSWORD: ${{ secrets.CERTIFICATE_PASSWORD }}
4545
if: ${{ matrix.os == 'macos-10.15' }}
4646
run: |
47-
sed -i '' 's/4.0.0/3.0.0/' Info.plist
47+
sed -i '' 's/4.0.0/3.0.1/' Info.plist
4848
brew install mysql
4949
git clone https://github.com/CellProfiler/python-javabridge.git
5050
cd python-javabridge/
@@ -54,7 +54,7 @@ jobs:
5454
make
5555
chmod +x add-osx-certificate.sh && ./add-osx-certificate.sh
5656
chmod +x osx-codesign.sh && ./osx-codesign.sh
57-
ditto -ck --keepParent --rsrc --sequesterRsrc ./dist/CellProfiler-Analyst.app ./dist/CellProfiler-Analyst-macOS-3.0.0.zip
57+
ditto -ck --keepParent --rsrc --sequesterRsrc ./dist/CellProfiler-Analyst.app ./dist/CellProfiler-Analyst-macOS-3.0.1.zip
5858
working-directory: ./distribution/macos
5959
- env:
6060
JDK_HOME: C:\hostedtoolcache\windows\jdk\14.0.1\x64
@@ -65,17 +65,17 @@ jobs:
6565
- if: ${{ matrix.os == 'windows-2019' }}
6666
run: |
6767
pyinstaller distribution/windows/CellProfiler-Analyst.spec
68-
iscc /dMyAppVersion="3.0.0" "distribution/windows/CellProfiler-Analyst.iss"
68+
iscc /dMyAppVersion="3.0.1" "distribution/windows/CellProfiler-Analyst.iss"
6969
- if: ${{ matrix.os == 'macos-10.15' }}
7070
uses: actions/upload-artifact@v1
7171
with:
72-
name: CellProfiler-Analyst-macOS-3.0.0.zip
73-
path: ./distribution/macos/dist/CellProfiler-Analyst-macOS-3.0.0.zip
72+
name: CellProfiler-Analyst-macOS-3.0.1.zip
73+
path: ./distribution/macos/dist/CellProfiler-Analyst-macOS-3.0.1.zip
7474
- if: ${{ matrix.os == 'windows-2019' }}
7575
uses: actions/upload-artifact@v2
7676
with:
77-
name: CellProfiler-Analyst-Windows-3.0.0.exe
78-
path: ./distribution/windows/Output/CellProfiler-Analyst-Windows-3.0.0.exe
77+
name: CellProfiler-Analyst-Windows-3.0.1.exe
78+
path: ./distribution/windows/Output/CellProfiler-Analyst-Windows-3.0.1.exe
7979
strategy:
8080
matrix:
8181
os: [macos-10.15, windows-2019]
@@ -97,25 +97,25 @@ jobs:
9797
tag_name: ${{ github.ref }}
9898
- uses: actions/download-artifact@v1
9999
with:
100-
name: CellProfiler-Analyst-macOS-3.0.0.zip
100+
name: CellProfiler-Analyst-macOS-3.0.1.zip
101101
path: ./
102102
- uses: actions/download-artifact@v1
103103
with:
104-
name: CellProfiler-Analyst-Windows-3.0.0.exe
104+
name: CellProfiler-Analyst-Windows-3.0.1.exe
105105
path: ./
106106
- env:
107107
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
108108
uses: actions/upload-release-asset@v1
109109
with:
110110
asset_content_type: application/zip
111-
asset_name: CellProfiler-Analyst-macOS-3.0.0.zip
112-
asset_path: /home/runner/work/CellProfiler-Analyst/CellProfiler-Analyst/CellProfiler-Analyst-macOS-3.0.0.zip
111+
asset_name: CellProfiler-Analyst-macOS-3.0.1.zip
112+
asset_path: /home/runner/work/CellProfiler-Analyst/CellProfiler-Analyst/CellProfiler-Analyst-macOS-3.0.1.zip
113113
upload_url: ${{ steps.create_release.outputs.upload_url }}
114114
- env:
115115
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
116116
uses: actions/upload-release-asset@v1
117117
with:
118118
asset_content_type: application/exe
119-
asset_name: CellProfiler-Analyst-Windows-3.0.0.exe
120-
asset_path: /home/runner/work/CellProfiler-Analyst/CellProfiler-Analyst/CellProfiler-Analyst-Windows-3.0.0.exe
119+
asset_name: CellProfiler-Analyst-Windows-3.0.1.exe
120+
asset_path: /home/runner/work/CellProfiler-Analyst/CellProfiler-Analyst/CellProfiler-Analyst-Windows-3.0.1.exe
121121
upload_url: ${{ steps.create_release.outputs.upload_url }}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
| **`Version`** | **`Documentation`** | **`Forum`** |
77
|---------------|----------------|-----------------|
8-
| [![Build Status](https://img.shields.io/badge/version-3.0.0-green.svg)](https://cellprofileranalyst.org/releases) | [![Build Status](https://img.shields.io/badge/documentation-3.0.0-brightgreen.svg)](https://cellprofiler-manual.s3.amazonaws.com/CellProfiler-Analyst-3.0.0/index.html) | [![Build Status](https://img.shields.io/badge/forum-CPA-blue.svg)](https://forum.image.sc/tag/cellprofiler-analyst) |
8+
| [![Build Status](https://img.shields.io/badge/version-3.0.1-green.svg)](https://cellprofileranalyst.org/releases) | [![Build Status](https://img.shields.io/badge/documentation-3.0-brightgreen.svg)](https://cellprofiler-manual.s3.amazonaws.com/CellProfiler-Analyst-3.0.0/index.html) | [![Build Status](https://img.shields.io/badge/forum-CPA-blue.svg)](https://forum.image.sc/tag/cellprofiler-analyst) |
99

1010
**CellProfiler Analyst** allows interactive exploration and analysis of data,
1111
particularly from high-throughput, image-based experiments. Included is a

cpa/util/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
_cached_description = None
2323

24-
__version__ = '3.0.0' # Version used by update checker, must be in format "N.N.N"
24+
__version__ = '3.0.1' # Version used by update checker, must be in format "N.N.N"
2525
_sub_version = '' # Use this to tag release candidates, betas, etc.
2626

2727
display_version = __version__ + _sub_version

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
# The short X.Y version.
6060
version = '3.0'
6161
# The full version, including alpha/beta/rc tags.
62-
release = '3.0.0'
62+
release = '3.0.1'
6363

6464
# The language for content autogenerated by Sphinx. Refer to documentation
6565
# for a list of supported languages.

docs/source/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
contain the root `toctree` directive.
55
66
============
7-
Manual 3.0.0
7+
Manual 3.0.1
88
============
99

1010
.. image:: https://i.imgur.com/uaEp2md.png

0 commit comments

Comments
 (0)