Skip to content

Commit d91c62e

Browse files
committed
v3.0.0rc1
- Added a plugin mechanism, allowing users to define and integrate their own "business logic" fields. - Change the global exception handling error level, from "error" to "exception". It'll provide better insights if you're using Logmatic or any other logging aggregator (#336). **warning**: The plugin mechanism is on BETA mode, and at the moment, it only allows to define business-logic fields at "form building time". It means there's not business-logic validation mechanism when you're filling a form previously defined with your custom field. This is a work in progress, please bear with us. *Minor changes* - Upgrade to Circle-CI 2 (before the end of life of Circle-CI v1 on August, 31st 2018). (#342) - Optimize Circle-CI usage by using the tox matrix in tests (#343) - Skip `tox` installation in the circle-ci environment: it's already there (#344).
1 parent 30bd85f commit d91c62e

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

CHANGELOG.rst

+13-4
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,22 @@
22
ChangeLog
33
=========
44

5-
master (unreleased)
6-
===================
5+
Release Candidate 3.0.0 RC1 (2018-08-20)
6+
========================================
77

8-
- Upgrade to Circle-CI 2 (before the end of life of Circle-CI v1 on August, 31st 2018). (#342)
9-
- Optimize Circle-CI usage by using the tox matrix in tests (#343)
108
- Added a plugin mechanism, allowing users to define and integrate their own "business logic" fields.
119
- Change the global exception handling error level, from "error" to "exception". It'll provide better insights if you're using Logmatic or any other logging aggregator (#336).
10+
11+
.. warning::
12+
13+
The plugin mechanism is on BETA mode, and at the moment, it only allows to define business-logic fields at "form building time". It means there's not business-logic validation mechanism when you're filling a form previously defined with your custom field.
14+
This is a work in progress, please bear with us.
15+
16+
Minor changes
17+
-------------
18+
19+
- Upgrade to Circle-CI 2 (before the end of life of Circle-CI v1 on August, 31st 2018). (#342)
20+
- Optimize Circle-CI usage by using the tox matrix in tests (#343)
1221
- Skip `tox` installation in the circle-ci environment: it's already there (#344).
1322

1423
Release 2.1.1 (2018-06-22)

formidable/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
from .json_migrations import latest_version
44

55
default_app_config = 'formidable.app.FormidableConfig'
6-
version = '2.2.0.dev0'
6+
version = '3.0.0rc1'
77
json_version = latest_version

0 commit comments

Comments
 (0)