Skip to content

Commit

Permalink
bump to version 0.35
Browse files Browse the repository at this point in the history
  • Loading branch information
acg committed Feb 15, 2013
1 parent 414d752 commit 9abb65e
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 15 deletions.
11 changes: 9 additions & 2 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
python-cdb ChangeLog
MJ Pomraning <mjp@pilcrow.madison.wi.us>
04 Sep 2009
Alan Grow <alangrow+python-cdb@gmail.com>
15 Feb 2013

15 Feb 2013
- Version 0.35
- New cdb.addmany() function for faster cdb construction
- Fix 2.5 build, needed -fPIC
- Add debian package
thx: Mike Pomraning for 10+ years of python-cdb!

04 Sep 2009
- Version 0.34
Expand Down
8 changes: 4 additions & 4 deletions README
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
python-cdb 0.34
Mike Pomraning <mjp@pilcrow.madison.wi.us>
04 Sep 2009
python-cdb 0.35
Alan Grow <alangrow+python-cdb@gmail.com>
15 Feb 2013

INTRO
=====
Expand Down Expand Up @@ -46,7 +46,7 @@ Consult the docstrings for module, class, and function documentation.

BUGS
====
Bug reports to Mike Pomraning <mjp@pilcrow.madison.wi.us>.
Bug reports to Alan Grow <alangrow+python-cdb@gmail.com>.


TODO
Expand Down
10 changes: 8 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
python-cdb (0.35.0) unstable; urgency=low

* Version 0.35. New cdb.addmany() function for faster cdb construction. Fix 2.5 build, needed -fPIC.

-- Alan Grow <agrow+python-cdb@gmail.com> Fri, 15 Feb 2013 12:25:56 -0700

python-cdb (0.34.0) unstable; urgency=low

* Initial release
* Initial debian package.

-- Alan Grow <alangrow+pythoncdb@gmail.com> Mon, 14 Feb 2011 19:04:49 -0500
-- Alan Grow <alangrow+python-cdb@gmail.com> Mon, 14 Feb 2011 19:04:49 -0500

2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# python-cdb 0.34
# python-cdb 0.35

[bdist_rpm]
release = 1
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

setup (# Distribution meta-data
name = "python-cdb",
version = "0.34",
version = "0.35",
description = "Interface to constant database files",
author = "Mike Pomraning",
author_email = "mjp@pilcrow.madison.wi.us",
author = "Alan Grow",
author_email = "alangrow+python-cdb@gmail.com",
license = "GPL",
long_description = \
'''The python-cdb extension module is an adaptation of D. J. Bernstein's
Expand All @@ -29,6 +29,6 @@
extra_compile_args=['-fPIC'],
)
],
url = "http://pilcrow.madison.wi.us/",
url = "https://github.com/acg/python-cdb",
)

4 changes: 2 additions & 2 deletions src/cdbmodule.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
python-cdb 0.34
python-cdb 0.35
Copyright 2001-2009 Michael J. Pomraning <mjp@pilcrow.madison.wi.us>
This program is free software; you can redistribute it and/or modify
Expand Down Expand Up @@ -28,7 +28,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#define open_read(x) (open((x),O_RDONLY|O_NDELAY))
/* ala djb's open_foo */

#define VERSION "0.34"
#define VERSION "0.35"
#define CDBVERSION "0.75"

/* ------------------- cdb object -------------------- */
Expand Down

0 comments on commit 9abb65e

Please sign in to comment.