Skip to content

Commit 7461fc8

Browse files
committed
Update dependencies
1 parent 810444d commit 7461fc8

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
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-
3.0.12
1+
3.0.13

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-tecnickcom-tc-lib-pdf-filter (<< 2.0.0), php-tecnickcom-tc-lib-pdf-filter (>= 2.0.15), ${misc:Depends}
13+
Depends: php (>= 8.0.0), php-tecnickcom-tc-lib-pdf-filter (<< 2.0.0), php-tecnickcom-tc-lib-pdf-filter (>= 2.0.16), ${misc:Depends}
1414
Description: PHP PDF Parser Library
1515
PHP library to parse PDF documents.

resources/rpm/rpm.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ BuildArch: noarch
1818

1919
Requires: php(language) >= 8.0.0
2020
Requires: php-composer(%{c_vendor}/tc-lib-pdf-filter) < 2.0.0
21-
Requires: php-composer(%{c_vendor}/tc-lib-pdf-filter) >= 2.0.15
21+
Requires: php-composer(%{c_vendor}/tc-lib-pdf-filter) >= 2.0.16
2222
Requires: php-pcre
2323

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

0 commit comments

Comments
 (0)