Skip to content

Commit

Permalink
preparing for 0.8.6 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
matteovescovi committed Aug 4, 2011
1 parent 5b25e85 commit 5cc9fdc
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 5 deletions.
10 changes: 10 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
2011-08-04 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>

* presage-0.8.6: released.

* website/presage_database_dump.sql.gz, configure.ac, NEWS:
preparing for 0.8.6 release.

* packaging/debian/presage/trunk/debian/changelog: updated release
information.

2011-08-01 Matteo Vescovi <matteo(dot)vescovi(at)yahoo(dot)co(dot)uk>

* apps/gtk/gprompter/scintilla/*: updated to latest scintilla 2.28
Expand Down
18 changes: 17 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ NEWS
----


Presage 0.8.6 released
----------------------
Presage 0.8.6 is now available for download.

Presage 0.8.6 brings improved support for Visual Studio compilers on Windows through the presage C API.

Presage 0.8.6 also comes with improvements to the predictive text editor gprompter.

Presage 0.8.6 comes with a number of other enhancements and fixes. Please see the ChangeLog for more details.

This is a source release only. No precompiled packages or installers are provided.

Users wishing to try out Presage should follow the (easy) steps needed to build presage, as detailed in the README file and in the documentation available in the doc/ directory.

Presage has been built and tested on various Linux platforms (including 32-bit and 64-bit architectures), Solaris 10, Windows (Cygwin and MinGW/MSYS), and MacOS X. If you encounter any issues while building or running presage, please report them to the author.


Presage 0.8.5 released
----------------------
Presage 0.8.5 is now available for download.
Expand All @@ -17,7 +34,6 @@ Presage 0.8.5 brings improvements to the experimental D-BUS service interface an

Presage 0.8.5 comes with a number of other enhancements and fixes. Please see the ChangeLog for more details.


This is a source release only. No precompiled packages or installers are provided.

Users wishing to try out Presage should follow the (easy) steps needed to build presage, as detailed in the README file and in the documentation available in the doc/ directory.
Expand Down
4 changes: 2 additions & 2 deletions bindings/c/presage_c_demo.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ int main()
if (PRESAGE_OK == presage_predict (prsg, &prediction))
{
for (i = 0; prediction[i] != 0; i++)
printf ("prediction[%d]: %s\n", i, prediction[i]);
printf ("prediction[%zu]: %s\n", i, prediction[i]);
presage_free_string_array (prediction);
}

Expand Down Expand Up @@ -102,7 +102,7 @@ int main()
if (PRESAGE_OK == presage_predict (prsg, &prediction))
{
for (i = 0; prediction[i] != 0; i++)
printf ("prediction[%d]: %s\n", i, prediction[i]);
printf ("prediction[%zu]: %s\n", i, prediction[i]);
presage_free_string_array (prediction);
}

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dnl Process this file with autoconf to produce a configure script.


AC_INIT([presage],
[0.8.6b],
[0.8.6],
[matteo.vescovi@yahoo.co.uk])
AM_INIT_AUTOMAKE([-Wall -Werror])

Expand Down
2 changes: 1 addition & 1 deletion packaging/debian/presage/trunk/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
presage (0.8.6b-1) unstable; urgency=low
presage (0.8.6-1) unstable; urgency=low

* Switched packaging from CDBS to debhelper dh.
* Build python extension module for all pyversions.
Expand Down
Binary file modified website/presage_database_dump.sql.gz
Binary file not shown.

0 comments on commit 5cc9fdc

Please sign in to comment.