Skip to content

Commit 0524884

Browse files
committed
Update dependencies
1 parent c273d18 commit 0524884

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ help:
105105
@echo " make rpm : Build an RPM package for RedHat-like Linux distributions"
106106
@echo " make server : Start the development server"
107107
@echo " make test : Run unit tests"
108+
@echo " make versionup: Increase the version patch number"
108109
@echo ""
109110
@echo "To test and build everything from scratch:"
110111
@echo "make buildall"
@@ -268,3 +269,9 @@ test:
268269
uninstall:
269270
rm -rf $(PATHINSTBIN)
270271
rm -rf $(PATHINSTDOC)
272+
273+
# Increase the version patch number
274+
.PHONY: versionup
275+
versionup:
276+
echo ${VERSION} | gawk -F. '{printf("%d.%d.%d\n",$$1,$$2,(($$3+1)));}' > VERSION
277+

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.2.2
1+
4.2.3

resources/debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ Vcs-Git: https://github.com/~#VENDOR#~/~#PROJECT#~.git
1010
Package: ~#PKGNAME#~
1111
Provides: php-~#PROJECT#~
1212
Architecture: all
13-
Depends: php (>= 8.0.0), php-date, php-zip, php-tecnickcom-tc-lib-color (<< 3.0.0), php-tecnickcom-tc-lib-color (>= 2.2.4), php-tecnickcom-tc-lib-pdf-encrypt (<< 3.0.0), php-tecnickcom-tc-lib-pdf-encrypt (>= 2.1.7), ${misc:Depends}
13+
Depends: php (>= 8.0.0), php-date, php-zip, php-tecnickcom-tc-lib-color (<< 3.0.0), php-tecnickcom-tc-lib-color (>= 2.2.5), php-tecnickcom-tc-lib-pdf-encrypt (<< 3.0.0), php-tecnickcom-tc-lib-pdf-encrypt (>= 2.1.8), ${misc:Depends}
1414
Description: PHP PDF Page Library
1515
PHP library containing PDF page formats and definitions.

resources/rpm/rpm.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ Requires: php(language) >= 8.0.0
2020
Requires: php-date
2121
Requires: php-zlib
2222
Requires: php-composer(%{c_vendor}/tc-lib-color) < 3.0.0
23-
Requires: php-composer(%{c_vendor}/tc-lib-color) >= 2.2.4
23+
Requires: php-composer(%{c_vendor}/tc-lib-color) >= 2.2.5
2424
Requires: php-composer(%{c_vendor}/tc-lib-pdf-encrypt) < 3.0.0
25-
Requires: php-composer(%{c_vendor}/tc-lib-pdf-encrypt) >= 2.1.7
25+
Requires: php-composer(%{c_vendor}/tc-lib-pdf-encrypt) >= 2.1.8
2626

2727
Provides: php-composer(%{c_vendor}/%{gh_project}) = %{version}
2828
Provides: php-%{gh_project} = %{version}

0 commit comments

Comments
 (0)