From: Matt Birkholz Date: Mon, 19 Feb 2018 02:11:15 +0000 (-0700) Subject: devops: release 0.5 X-Git-Tag: mit-scheme-pucked-devops-0.5^0 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=1b606a1b26d45c49ca8866ca22957106df9d3cc1;p=mit-scheme.git devops: release 0.5 --- diff --git a/src/devops/NEWS b/src/devops/NEWS index 2921f5749..e5c19a1bd 100644 --- a/src/devops/NEWS +++ b/src/devops/NEWS @@ -20,6 +20,11 @@ You should have received a copy of the GNU General Public License along with this plugin; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. +mit-scheme-pucked-devops 0.5 - Matt Birkholz, 2018-02-18 +======================================================== + +Support debugging builds with a devops:make procedure. + mit-scheme-pucked-devops 0.4 - Matt Birkholz, 2018-01-02 ======================================================== diff --git a/src/devops/configure.ac b/src/devops/configure.ac index a570cf3e3..f8ea05016 100644 --- a/src/devops/configure.ac +++ b/src/devops/configure.ac @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT([MIT/GNU Scheme Pucked Developer Operations plugin], - [0.4], + [0.5], [matt@birchwood-abbey.net], [mit-scheme-pucked-devops]) AC_CONFIG_SRCDIR([devops.pkg]) diff --git a/src/devops/debian/changelog b/src/devops/debian/changelog index 56495d23e..8e220b135 100644 --- a/src/devops/debian/changelog +++ b/src/devops/debian/changelog @@ -1,3 +1,9 @@ +mit-scheme-pucked-devops (0.5) birchwood; urgency=low + + * Support debugging builds with a devops:make procedure. + + -- Matt Birkholz Sun, 18 Jan 2018 00:00:00 -0000 + mit-scheme-pucked-devops (0.4) birchwood; urgency=low * New git-tag-create-options, for configuring optional tag signing. diff --git a/src/devops/make.scm b/src/devops/make.scm index 292950b01..32285f6f7 100644 --- a/src/devops/make.scm +++ b/src/devops/make.scm @@ -5,4 +5,4 @@ Load the Developer Operations plugin. |# (with-loader-base-uri (system-library-uri "devops/") (lambda () (load-package-set "devops"))) -(add-subsystem-identification! "DevOps" '(0 4)) \ No newline at end of file +(add-subsystem-identification! "DevOps" '(0 5)) \ No newline at end of file