summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Pentchev <roam@debian.org>2019-01-13 14:01:09 +0200
committerPeter Pentchev <roam@debian.org>2019-01-13 14:01:09 +0200
commit911dd6575e1e1b8c309fa36ec50c5ac585afd624 (patch)
treed4ffb0027ebb52433b21cb8090d29edbff8a8d66
parent34bba336ced4fe54e521d45471b9d840f0597974 (diff)
parent880f87f9347fcf5d532545d2625bcc60d6e4ea06 (diff)
Merge confget-2.2.0 into the Debian branch.
-rw-r--r--CHANGES6
-rw-r--r--confget.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index ad4ce17..5211665 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,11 @@
Change log for confget, the configuration file variable extractor
+2.2.0 2019/01/13
+ - add a Python implementation: a confget library that may
+ also be invoked from the command line with the same
+ inteface as the C confget tool
+ - generate the TAP tests automatically from JSON definitions
+
2.1.1 2018/11/27
- fix the check for more than one requested query type
diff --git a/confget.c b/confget.c
index 054c765..3fa7cd3 100644
--- a/confget.c
+++ b/confget.c
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2008, 2009, 2012, 2013, 2016 - 2018 Peter Pentchev
+ * Copyright (c) 2008, 2009, 2012, 2013, 2016 - 2019 Peter Pentchev
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -185,7 +185,7 @@ usage(const bool error)
void
version(void)
{
- puts("confget 2.1.1");
+ puts("confget 2.2.0");
}
/***