aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2010-07-03 10:56:48 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2010-07-03 10:56:48 +0300
commit6b6a4fba1a69ccf0d2d22a238d7f8373c84526a3 (patch)
tree4b071c1396d49bbe18a570aa78bd9f4cd47269e4
parent1568ad915ce84af144d5b0c7d0f4b294930de1e2 (diff)
downloadsmap-6b6a4fba1a69ccf0d2d22a238d7f8373c84526a3.tar.gz
smap-6b6a4fba1a69ccf0d2d22a238d7f8373c84526a3.tar.bz2
Version 1.1release-1.1
-rw-r--r--NEWS16
-rw-r--r--configure.ac4
2 files changed, 12 insertions, 8 deletions
diff --git a/NEWS b/NEWS
index 892c956..2a19d04 100644
--- a/NEWS
+++ b/NEWS
@@ -1,14 +1,14 @@
-Smap NEWS -- history of user-visible changes. 2010-06-25
+Smap NEWS -- history of user-visible changes. 2010-07-03
Copyright (C) 2006, 2007, 2008, 2009, 2010 Sergey Poznyakoff
See the end of file for copying conditions.
Please send Smap bug reports to <gray+smap@gnu.org.ua>
-Version 1.0.1, (Git)
+Version 1.1, 2010-07-03
* New configuration statements
- prepend-load-path
Adds specified path at the beginning of the current load path
@@ -23,22 +23,22 @@ New dispatch condition `key' compares key with the given pattern. As
with `map' three kinds of comparison are supported: literal, globbing
pattern and regular expression.
* Transform capability
Transform capability is an optional feature provided by some
-dataabases. It allows to transform requests following certain
+databases. It allows for transforming requests following certain
rules.
Transforms are requested in dispatch rules, e.g.:
dispatch key like <*> transform key dequote
-This rule applies to any request whose key is enclosed in
-angle brackets. It calls transformation method `dequote'
-(which should be defined prior to this statement) on the
+This rule applies to any request which has its key enclosed in
+angle brackets. It applies the transformation method `dequote'
+(which should be defined prior to this statement) to the
key. After the method returns, scanning dispatch rules is
resumed with the modified key value.
* New module `sed'
This module allows to modify queries using sed-like expressions.
@@ -49,14 +49,18 @@ the example above, could be:
module sed sed
# Dequote database: removes angle brackets surrounding the argument
database dequote sed 's/<(.*)>/\1/'
* New module `mysql'
+Provides an interface to MySQL DBMS.
+
* New module `postgres'
+Provides an interface to PostgreSQL DBMS.
+
Version 1.0, 2010-06-19
* First release
diff --git a/configure.ac b/configure.ac
index 0d10b49..9ee1d18 100644
--- a/configure.ac
+++ b/configure.ac
@@ -13,14 +13,14 @@
#
# You should have received a copy of the GNU General Public License
# along with Smap. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ(2.63)
m4_define([SMAP_VERSION_MAJOR], 1)
-m4_define([SMAP_VERSION_MINOR], 0)
-m4_define([SMAP_VERSION_PATCH], 1)
+m4_define([SMAP_VERSION_MINOR], 1)
+dnl m4_define([SMAP_VERSION_PATCH], 0)
AC_INIT([smap],
SMAP_VERSION_MAJOR.SMAP_VERSION_MINOR[]m4_ifdef([SMAP_VERSION_PATCH],.SMAP_VERSION_PATCH),
[gray+smap@gnu.org.ua])
AC_CONFIG_SRCDIR([src/smapd.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_AUX_DIR([build-aux])

Return to:

Send suggestions and report system problems to the System administrator.