Skip to content

Commit db55bd8

Browse files
authored
Merge pull request #102 from novafloss/releases/0.1.0
Release 0.1.0
2 parents d3b1552 + 645642b commit db55bd8

File tree

2 files changed

+53
-3
lines changed

2 files changed

+53
-3
lines changed

CHANGELOG.rst

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
=========
2+
ChangeLog
3+
=========
4+
5+
Release 0.1.0 (2016-06-29)
6+
==========================
7+
8+
* Define constants for access right 2 - Working <= 5 enhancement (#88)
9+
* Disabled field don't send data on submit! bug question (#79)
10+
* Turn defaults value into a list of strings refactor (#77)
11+
* Rename value to label for fields items refactor (#76)
12+
* Ordre des items dans les fields à choix. (#69)
13+
* Define ``FileField`` in FieldBuilder (pure Django) (#68)
14+
* Fix radiobutton type ID through JS builder (#67)
15+
* Python 3/2 compatibility (#66)
16+
* Fix multiple choices in the final Django Form class (#63)
17+
* Fix the order field creation and rendering in data serialization (#61)
18+
* Add validation Presets (#60)
19+
* Rename "helpText" to "help_text" (#57)
20+
* Add docs (#53)
21+
* Implement TitleField/SeperateField/HelpTextField (#51)
22+
* Add contextualized serializer tests (#49)
23+
* Add date choice (#45)
24+
* Add the form context serializer (#44)
25+
* Add validation on field object (#41)
26+
* Handle order of fields on save (#37)
27+
* Fix the creation and edition of nested fields in form serializer (#35)
28+
* Make real object for access (#32)
29+
* Add ID field for the form object serialized (#31)
30+
* Django Form from an Formidable object (#29)
31+
* Ember Integration for demo project (#28)
32+
* Tests for API REST calls (#27)
33+
* Control level access and constants (#22)
34+
* Refactor of the generic listserializer (#20)
35+
* Add the update view forgotten (#18)
36+
* Field Validation (#16)
37+
* Implementate role accesses (#14)
38+
* Update 3-level forms (#10)
39+
* Add create via API (#8)
40+
* Implement a fieldserializer for each type of fields (#6)
41+
* Add README and Makefile (#5)
42+
* Setup CI for the API (#4)
43+
* Add python Builder (#3)
44+
* Use Django Rest Framework for the API (#2)
45+
* Bootstrap django-formidable (#1)
46+
47+
Developers
48+
----------
49+
50+
* Guillaume Camera <[email protected]>
51+
* Guillaume Gérard <[email protected]>

setup.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@
44
import os
55
from setuptools import setup, find_packages
66

7-
87
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
9-
README = readme.read()
8+
README = readme.read()
109

1110
setup(
1211
name='django-formidable',
13-
version='0.1.0dev0',
12+
version='0.1.0',
1413
packages=find_packages(),
1514
include_package_data=True,
1615
license='BSD License',

0 commit comments

Comments
 (0)