Skip to content

Commit

Permalink
Update version references
Browse files Browse the repository at this point in the history
  • Loading branch information
replaceafill committed Oct 7, 2024
1 parent dcbd864 commit 2b7e6d5
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ may be a bit different between packages, but the most common are `BRANCH`,
So in order to build a specific branch or version, this command can be used from
the folder of the package we want to build:

make BRANCH=qa/1.x VERSION=1.16.0 RELEASE=rc5
make BRANCH=qa/1.x VERSION=1.17.0 RELEASE=rc5

Keep in mind that the makefiles are a bit recursive, they will invoke Docker,
mount the current folder, and run the deb-build target.
Expand Down
2 changes: 1 addition & 1 deletion debs/focal/.Jenkinsci
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pipeline {
string(defaultValue: 'qa/1.x', description: '', name: 'BRANCH')
string(defaultValue: '', description: '', name: 'GIT_REPO')
string(defaultValue: '0F4A4D31', description: 'For production packages, use production key', name: 'GPG_ID')
string(defaultValue: '1.16.0', description: '', name: 'VERSION')
string(defaultValue: '1.17.0', description: '', name: 'VERSION')
string(defaultValue: '-beta1', description: '', name: 'RELEASE')
string(defaultValue: 'qa/1.x', description: '', name: 'PACKBUILD_BRANCH')
string(defaultValue: 'jenkinsci', description: '', name: 'REPOSITORY')
Expand Down
2 changes: 1 addition & 1 deletion debs/jammy/.Jenkinsci
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pipeline {
string(defaultValue: 'qa/1.x', description: '', name: 'BRANCH')
string(defaultValue: '', description: '', name: 'GIT_REPO')
string(defaultValue: '0F4A4D31', description: 'For production packages, use production key', name: 'GPG_ID')
string(defaultValue: '1.16.0', description: '', name: 'VERSION')
string(defaultValue: '1.17.0', description: '', name: 'VERSION')
string(defaultValue: '-beta1', description: '', name: 'RELEASE')
string(defaultValue: 'qa/1.x', description: '', name: 'PACKBUILD_BRANCH')
string(defaultValue: 'jenkinsci', description: '', name: 'REPOSITORY')
Expand Down
2 changes: 1 addition & 1 deletion debs/jammy/archivematica-storage-service/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ DOCKER_VOLUME = "/src"
DOCKER_IMAGE = "debbuild-$(NAME)-$(PACKAGE)-$(VERSION)"
GPG_ID ?= 0F4A4D31
BRANCH ?= qa/0.x
VERSION ?= 0.22.0
VERSION ?= 0.23.0
RELEASE ?= -1
GIT_REPO = "https://github.com/artefactual/archivematica-storage-service"

Expand Down
2 changes: 1 addition & 1 deletion debs/jammy/archivematica/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ DOCKER_VOLUME = "/src"
DOCKER_IMAGE = "debbuild-$(NAME)-$(PACKAGE)-$(VERSION)"
GPG_ID ?= 0F4A4D31
BRANCH ?= qa/1.x
VERSION ?= 1.16.0
VERSION ?= 1.17.0
RELEASE ?= -1
GIT_REPO ?= "https://github.com/artefactual"

Expand Down
2 changes: 1 addition & 1 deletion debs/jammy/archivematica/debian-MCPClient/control
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Package: archivematica-mcp-client
Architecture: amd64
Depends:
${misc:Depends},
archivematica-common (>= 1.16.0),
archivematica-common (>= 1.17.0),
atool,
bulk-extractor,
clamav,
Expand Down
2 changes: 1 addition & 1 deletion debs/jammy/archivematica/debian-MCPServer/control
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Package: archivematica-mcp-server
Architecture: amd64
Depends:
${misc:Depends},
archivematica-common (>= 1.16.0),
archivematica-common (>= 1.17.0),
dbconfig-common,
dbconfig-mysql,
mysql-server,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ Depends:
${misc:Depends},
python3,
python3-distutils,
archivematica (>= 1.16.0)
archivematica (>= 1.17.0)
Description: Archivematica shared libraries.
Homepage: https://www.archivematica.org
2 changes: 1 addition & 1 deletion debs/jammy/archivematica/debian-dashboard/control
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Architecture: any
Depends:
${shlibs:Depends},
${misc:Depends},
archivematica-common (>= 1.16.0),
archivematica-common (>= 1.17.0),
git,
nginx,
gettext
Expand Down
2 changes: 1 addition & 1 deletion rpms/EL9/.Jenkinsci
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pipeline {
string(defaultValue: 'archivematica', description: '', name: 'PACKAGE')
string(defaultValue: 'qa/1.x', description: '', name: 'BRANCH')
string(defaultValue: '0F4A4D31', description: 'For production packages, use production key', name: 'GPG_ID')
string(defaultValue: '1.16.0', description: '', name: 'VERSION')
string(defaultValue: '1.17.0', description: '', name: 'VERSION')
string(defaultValue: 'beta1', description: '', name: 'RELEASE')
string(defaultValue: '', description: '', name: 'GIT_REPO')
string(defaultValue: 'qa/1.x', description: '', name: 'PACKBUILD_BRANCH')
Expand Down
2 changes: 1 addition & 1 deletion rpms/EL9/archivematica-storage-service/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
NAME = archivematica-storage-service
BRANCH ?= qa/0.x
VERSION ?= 0.22.0
VERSION ?= 0.23.0
RELEASE ?= 1
RPM_TOPDIR = "/rpmbuild"
DOCKER_VOLUME = "/src"
Expand Down
2 changes: 1 addition & 1 deletion rpms/EL9/archivematica/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PACKAGE ?= archivematica
BRANCH ?= qa/1.x
VERSION ?= 1.16.0
VERSION ?= 1.17.0
RELEASE ?= 1
RPM_TOPDIR = "/rpmbuild"
DOCKER_VOLUME = "/src"
Expand Down

0 comments on commit 2b7e6d5

Please sign in to comment.