Skip to content

Commit

Permalink
release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wardi committed Oct 5, 2017
1 parent 01e44de commit eb53cdd
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
dataset_organization, resource_url_upload, resource_format_autocomplete,
select presets


## 1.0.0

2015-10-14
Expand All @@ -23,3 +24,20 @@
* new presets: multiple_checkbox, multiple_select, date
* support for yaml schemas+presets
* lots of fixes


## 1.1.0

2017-10-05

* automated tests against ckan 2.4, 2.5 and 2.6
* json_object field preset for arbitrary JSON objects as values
* datetime and datetime_tz field presets for date+time validation
* display_snippet=null to hide fields from being displayed
* choices_helper option to use a helper function for custom choice lists
* scheming_datastore_choices helper for pulling choice lists from a
DataStore table
* select_size option to customize select form snippet
* sorted_choices option to sort choices before displaying them
* automatic reloading on schema changes in development mode
* improved test coverage and lots of fixes
1 change: 1 addition & 0 deletions ckanext/scheming/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def scheming_language_text(text, prefer_lang=None):
if not text:
return u''

assert text != {}
if hasattr(text, 'get'):
try:
if prefer_lang is None:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
import sys, os

version = '1.0.1b'
version = '1.1.0'

setup(
name='ckanext-scheming',
Expand Down

0 comments on commit eb53cdd

Please sign in to comment.