Skip to content

Commit 390ae96

Browse files
committed
Merge pull request #169 from spectras/publish_v0.4
Update project metadata for v0.4
2 parents 62443b2 + eaeec5a commit 390ae96

6 files changed

Lines changed: 23 additions & 14 deletions

File tree

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Alphabetical list of contributors:
88
* Ian Clelland
99
* Iván Raskovsky
1010
* Jonas Obrist
11+
* Julien Hartmann
1112
* Kristian Øllegaard
1213
* Martin Koistinen
1314
* Stefan Foulis

README.rst

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,19 @@ django-hvad
33
============
44

55
This project is yet another attempt at making model translations suck less in
6-
Django.
6+
Django. It uses an automatically created :term:`Translations Model` to store
7+
translatable fields in arbitrary languages with a foreign key to the main model.
78

89
Documentation for django-hvad can be found at http://django-hvad.readthedocs.org/.
910

10-
This project provides the same functionality as django-nani, but it as opposed
11-
to django-nani, this project does not affect the default queries, which means
12-
that everything will continue to work as it was before.
13-
14-
You have to activate the translated fields, by calling a specific method on the manager.
11+
This project replaces the obsolete django-nani package. It provides the same
12+
functionality, but does not affect the default queries: translated fields have
13+
to be activated by calling a specific method on the
14+
:class:`~hvad.manager.TranslationManager`.
1515

1616
.. warning:: django-hvad is still in beta, please use it with
17-
caution and report any bug(s) you might encounter.
17+
caution and report any bug(s) you might encounter on
18+
https://github.com/KristianOellegaard/django-hvad/issues
1819

1920
**Feel free to join us at #django-hvad on irc.freenode.net for a chat**
2021

@@ -43,6 +44,7 @@ Features
4344
* Simple API
4445
* Predictable
4546
* Reliable
47+
* Versatile (can manipulate arbitrary languages without changing the DB layout)
4648
* Fast (few and simple queries)
4749
* High level (no custom SQL Compiler or other scary things)
4850

docs/changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Changelog
66

77
.. glossary::
88

9-
0.4.0 (2014-05-16)
9+
0.4.0
1010
New Python and Django versions supported:
1111

1212
- django-hvad now supports Django 1.7 running on Python 2.7, 3.3 and 3.4.

docs/public/release_notes.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ Release Notes
55
.. release 0.4
66
77
*****************************
8-
0.4 - 2014-05-16
8+
0.4
99
*****************************
1010

11+
Released on May 19, 2014
12+
1113
New Python and Django versions supported:
1214

1315
- django-hvad now supports Django 1.7 running on Python 2.7, 3.3 and 3.4.

hvad/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = '0.3'
2-
1+
__version__ = '0.4.0'
2+
VERSION = (0, 4, 0)

setup.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
from setuptools import setup, find_packages
22
from hvad import __version__ as version
33

4+
with open('README.rst') as f:
5+
long_description = f.read()
6+
47
setup(
58
name = 'django-hvad',
69
version = version,
7-
description = 'A translations framework for django integrated automatically in the normal ORM. Removes the pain of having to think about translations in a django project.',
10+
description = 'A content translation framework for django integrated automatically in the normal ORM. Removes the pain of having to think about translations in a django project.',
11+
long_description = long_description,
812
author = 'Kristian Ollegaard',
913
author_email = 'kristian.ollegaard@divio.ch',
1014
url = 'https://github.com/KristianOellegaard/django-hvad',
@@ -19,18 +23,18 @@
1923
zip_safe=False,
2024
include_package_data = True,
2125
install_requires=[
22-
'Django>=1.2',
26+
'Django>=1.3',
2327
],
2428
classifiers = [
2529
"Development Status :: 3 - Alpha",
2630
"Framework :: Django",
2731
"Intended Audience :: Developers",
2832
"License :: OSI Approved :: BSD License",
2933
"Operating System :: OS Independent",
30-
"Programming Language :: Python :: 2.5",
3134
"Programming Language :: Python :: 2.6",
3235
"Programming Language :: Python :: 2.7",
3336
"Programming Language :: Python :: 3.3",
37+
"Programming Language :: Python :: 3.4",
3438
"Topic :: Database",
3539
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
3640
]

0 commit comments

Comments
 (0)