Skip to content

Commit

Permalink
Merge pull request #776 from henrypinkard/main
Browse files Browse the repository at this point in the history
Fix build automation thing and bump versions
  • Loading branch information
henrypinkard authored Jun 15, 2024
2 parents 3f4696d + 9503dba commit 4c3f0d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build_automation/update_PycroManagerJava.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def read_versions(root):
for dependency in dependencies:
artifactId = dependency.find("artifactId").text
version = dependency.find("version").text
if artifactId in ["NDStorage", "NDViewer", "AcqEngJ"]:
if artifactId in ["NDTiffStorage", "NDViewer", "AcqEngJ"]:
versions[artifactId] = Version(version)
return versions

Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.micro-manager.pycro-manager</groupId>
<artifactId>PycroManagerJava</artifactId>
<version>0.46.10</version>
<version>0.46.11</version>
<packaging>jar</packaging>
<name>Pycro-Manager Java</name>
<description>The Java components of Pycro-Manager</description>
Expand Down
2 changes: 1 addition & 1 deletion pycromanager/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (0, 34, 1)
version_info = (0, 34, 2)
__version__ = ".".join(map(str, version_info))

0 comments on commit 4c3f0d3

Please sign in to comment.