File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ MAKEFILE_VERSION = $(shell awk '/^VERSION/ { print $$3 }' Makefile)
1818DOC_VERSION = $(shell awk '/^release/ { print $$3 }' docs/conf.py | tr -d "'")
1919SPECFILE_VERSION = $(shell awk '/^Version/ { print $$2 }' pgloader.spec)
2020DEBIAN_VERSION = $(shell dpkg-parsechangelog -SVersion | cut -d- -f 1)
21+ PGLOADER_MAJOR_VERSION = $(shell awk '/^.defparameter .major-version/ { print $$3 }' src/params.lisp | grep -Eo '[0-9.]+')
22+ PGLOADER_MINOR_VERSION = $(shell awk '/^.defparameter .minor-version/ { print $$3 }' src/params.lisp | grep -Eo '[0-9.]+')
2123
2224# buildd provides a build environment where $HOME is not writable, but the
2325# CL compilers here will need to fill-in a per-user cache
@@ -30,6 +32,7 @@ override_dh_auto_clean:
3032 [ " $( MAKEFILE_VERSION) " = " $( DOC_VERSION) " ] # Makefile = docs/conf.py version
3133 [ " $( MAKEFILE_VERSION) " = " $( SPECFILE_VERSION) " ] # Makefile = pgloader.spec version
3234 [ " $( MAKEFILE_VERSION) " = " $( DEBIAN_VERSION) " ] # Makefile = debian/changelog version
35+ [ " $( MAKEFILE_VERSION) " = " $( PGLOADER_MAJOR_VERSION) .$( PGLOADER_MINOR_VERSION) " ] # Makefile = src/params.lisp version
3336
3437override_dh_auto_build-indep :
3538 # do nothing
Original file line number Diff line number Diff line change 4444 " non-nil when this build is a release build." )
4545
4646(defparameter *major-version* " 3.6" )
47- (defparameter *minor-version* " 7 " )
47+ (defparameter *minor-version* " 10 " )
4848
4949(defun git-hash ()
5050 " Return the current abbreviated git hash of the development tree."
You can’t perform that action at this time.
0 commit comments