From 198cb7b2cadc6e1b095909d479399bb908e9e1c5 Mon Sep 17 00:00:00 2001 From: Tanner Prestegard Date: Thu, 25 May 2017 11:46:32 -0500 Subject: [PATCH] updating version numbers and changelog for packaging --- debian/changelog | 8 ++++++++ ligo-gracedb.spec | 4 ++-- ligo/gracedb/__init__.py | 2 +- ligo/gracedb/cli.py | 2 +- ligo/gracedb/test/test.py | 2 +- setup.py | 2 +- 6 files changed, 14 insertions(+), 6 deletions(-) diff --git a/debian/changelog b/debian/changelog index 0412eb4..e0837cf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +ligo-gracedb (1.24-1) unstable; urgency=low + + * Added a check on .netrc file permissions + * Added capability to create events with labels attached + * Added offline boolean parameter when creating events + + -- Tanner Prestegard Thu, 25 May 2017 11:42:24 -0500 + ligo-gracedb (1.23-1) unstable; urgency=low * Improved exception handling and display of tracebacks in REST client diff --git a/ligo-gracedb.spec b/ligo-gracedb.spec index 54c5008..eefe336 100644 --- a/ligo-gracedb.spec +++ b/ligo-gracedb.spec @@ -1,6 +1,6 @@ %define name ligo-gracedb -%define version 1.23 -%define unmangled_version 1.23 +%define version 1.24 +%define unmangled_version 1.24 %define release 1 Summary: Gravity Wave Candidate Event Database diff --git a/ligo/gracedb/__init__.py b/ligo/gracedb/__init__.py index 66117da..6b348f3 100644 --- a/ligo/gracedb/__init__.py +++ b/ligo/gracedb/__init__.py @@ -18,7 +18,7 @@ __all__ = ["cli", "rest"] -GIT_TAG = 'gracedb-1.23-1' +GIT_TAG = 'gracedb-1.24-1' # issue 717. Required for backward compatibility -- make sure "from ligo import gracedb" # works as it used to. diff --git a/ligo/gracedb/cli.py b/ligo/gracedb/cli.py index 990e9e8..ae401c7 100755 --- a/ligo/gracedb/cli.py +++ b/ligo/gracedb/cli.py @@ -27,7 +27,7 @@ DEFAULT_SERVICE_URL = "https://gracedb.ligo.org/gracedb/api" DEFAULT_BASIC_URL = "https://gracedb.ligo.org/apibasic/" -GIT_TAG = 'gracedb-1.23-1' +GIT_TAG = 'gracedb-1.24-1' DEFAULT_COLUMNS = "graceid,labels,group,pipeline,search,far,gpstime,created,dataurl" diff --git a/ligo/gracedb/test/test.py b/ligo/gracedb/test/test.py index 0a5c7b4..2313d86 100644 --- a/ligo/gracedb/test/test.py +++ b/ligo/gracedb/test/test.py @@ -367,7 +367,7 @@ class TestGracedb(unittest.TestCase): def test_gittag(self): # try to make sure GIT_TAG is set properly. import errno - version = "1.23" + version = "1.24" try: # If we are in the source dir (setup.py is available) # make sure the version above agrees. diff --git a/setup.py b/setup.py index ceff844..fd86049 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ import os from setuptools import setup -version = "1.23" +version = "1.24" setup( name = "ligo-gracedb", -- 2.22.2