[glom] 1.23.3
- From: Murray Cumming <murrayc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glom] 1.23.3
- Date: Tue, 15 Jan 2013 11:23:31 +0000 (UTC)
commit 130f6063639c2f72cfa19c12bcc0f656e6bf1f5e
Author: Murray Cumming <murrayc murrayc com>
Date: Tue Jan 15 10:25:53 2013 +0100
1.23.3
ChangeLog | 4 +++-
NEWS | 17 ++++++++++++++++-
configure.ac | 4 ++--
docs/pyglom_reference/Makefile.am | 2 +-
glom/libglom/init.h | 4 ++--
glom/libglom/utils.cc | 2 +-
glom/python_embed/python_module/py_glom_module.cc | 2 +-
7 files changed, 26 insertions(+), 9 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 6db24d8..a9d8ed3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,5 @@
+1.23.3:
+
2013-01-13 Murray Cumming <murrayc murrayc com>
Fix the build with MySQL disabled.
@@ -48,7 +50,7 @@
2013-01-06 Murray Cumming <murrayc murrayc com>
- MySQL:Use MySQL syntax to change columns
+ MySQL: Use MySQL syntax to change columns
* glom/libglom/connnectionpool_backends/mysql.cc:
MYSQL uses:
diff --git a/NEWS b/NEWS
index a48db0c..5e604ef 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,19 @@
-1.23.2:
+1.23.3 (unstable):
+
+* Added an --enable-mysql configure option.
+ When enabled, this adds a PostgreSQL/MySQL choice in the UI,
+ as with the existing --enable-sqlite configure option.
+ The MySQL support is very experimental and unsupported.
+ It might be removed later if nobody chooses to work on it.
+* libglom: Added a dependency on libgda-mysql-5.0, because
+ libglom always supports all backends regardless of the build
+ option.
+* Tests:
+ - Simplify the code a litte.
+ - Test the use of a relationship to get data.
+ - Add a test that uses an example with text primary keys.
+
+1.23.2 (unstable):
* Tests:
- Use the locally-built glom.
diff --git a/configure.ac b/configure.ac
index 7c6e5d0..c20099f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,7 +15,7 @@
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>.
-AC_INIT([Glom],[1.23.2],[http://bugzilla.gnome.org/enter_bug.cgi?product=Glom],[glom])
+AC_INIT([Glom],[1.23.3],[http://bugzilla.gnome.org/enter_bug.cgi?product=Glom],[glom])
AC_PREREQ(2.63)
AC_CONFIG_SRCDIR([glom/main.cc])
@@ -37,7 +37,7 @@ LT_INIT([disable-static win32-dll])
# Used for the install directories for headers. The same number is used in
# the library name, which must be kept in sync, but variables can't be used
# with that.
-AC_SUBST([GLOM_ABI_VERSION], [1.22])
+AC_SUBST([GLOM_ABI_VERSION], [1.24])
AC_DEFINE_UNQUOTED([GLOM_ABI_VERSION], ["$GLOM_ABI_VERSION"],
[Define to the Glom ABI version string.])
diff --git a/docs/pyglom_reference/Makefile.am b/docs/pyglom_reference/Makefile.am
index d771f92..652af5f 100644
--- a/docs/pyglom_reference/Makefile.am
+++ b/docs/pyglom_reference/Makefile.am
@@ -6,7 +6,7 @@
# html:
# pydoc -w $(top_builddir)/glom/python_embed/python_module/.libs/
# mkdir html
-# mv glom_1_22.html html/index.html
+# mv glom_1_24.html html/index.html
book_name = pyglom_$(GLOM_ABI_VERSION_UNDERLINED)
diff --git a/glom/libglom/init.h b/glom/libglom/init.h
index 3bdb670..19c73df 100644
--- a/glom/libglom/init.h
+++ b/glom/libglom/init.h
@@ -59,12 +59,12 @@
*
* If your source file is @c program.cc, you can compile it with:
* @code
- * g++ program.cc -o program `pkg-config --cflags --libs glom-1.22`
+ * g++ program.cc -o program `pkg-config --cflags --libs glom-1.24`
* @endcode
*
* Alternatively, if using autoconf, use the following in @c configure.ac:
* @code
- * PKG_CHECK_MODULES([DEPS], [glom-1.22])
+ * PKG_CHECK_MODULES([DEPS], [glom-1.24])
* @endcode
* Then use the generated @c DEPS_CFLAGS and @c DEPS_LIBS variables in the
* project @c Makefile.am files. For example:
diff --git a/glom/libglom/utils.cc b/glom/libglom/utils.cc
index f85154e..c7b8dd2 100644
--- a/glom/libglom/utils.cc
+++ b/glom/libglom/utils.cc
@@ -1026,7 +1026,7 @@ bool Utils::file_exists(const Glib::RefPtr<Gio::File>& file)
}
//TODO: This is a duplicate of the one in db_utils.cc:
-//Merge all db utilities into db_utils in glom 1.22:
+//Merge all db utilities into db_utils in glom 1.24:
static Glib::RefPtr<Gnome::Gda::Connection> get_connection()
{
sharedptr<SharedConnection> sharedconnection;
diff --git a/glom/python_embed/python_module/py_glom_module.cc b/glom/python_embed/python_module/py_glom_module.cc
index 7f7a6db..71eb0a5 100644
--- a/glom/python_embed/python_module/py_glom_module.cc
+++ b/glom/python_embed/python_module/py_glom_module.cc
@@ -29,7 +29,7 @@
using namespace Glom;
-BOOST_PYTHON_MODULE(glom_1_22)
+BOOST_PYTHON_MODULE(glom_1_24)
{
boost::python::docstring_options doc_options(
true, // show the docstrings from here
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]