summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Pentchev <roam@ringlet.net>2019-01-13 13:50:36 +0200
committerPeter Pentchev <roam@ringlet.net>2019-01-13 13:50:36 +0200
commit880f87f9347fcf5d532545d2625bcc60d6e4ea06 (patch)
tree519fbe4dc8d5fefc046e61c2cc6fcde048771411
parent7515de39b089395b94d54869466dcefd08742c18 (diff)
Prepare to release confget-2.2.0.
-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");
}
/***