[ckan-changes] [ckan/ckan] afcd86: Update version number for 2.4.4b release
GitHub
noreply at github.com
Wed Nov 2 10:19:45 UTC 2016
Branch: refs/heads/release-v2.4-latest
Home: https://github.com/ckan/ckan
Commit: afcd86db6fdf3e9c077eaba1057202ac979f6fe3
https://github.com/ckan/ckan/commit/afcd86db6fdf3e9c077eaba1057202ac979f6fe3
Author: amercader <amercadero at gmail.com>
Date: 2016-03-31 (Thu, 31 Mar 2016)
Changed paths:
M ckan/__init__.py
Log Message:
-----------
Update version number for 2.4.4b release
Commit: 2c979349102fa7e070f6343134cf65a536cca3ac
https://github.com/ckan/ckan/commit/2c979349102fa7e070f6343134cf65a536cca3ac
Author: amercader <amercadero at gmail.com>
Date: 2016-03-31 (Thu, 31 Mar 2016)
Changed paths:
A bin/postgres_init/1_create_ckan_db.sh
A bin/postgres_init/2_create_ckan_datastore_db.sh
A bin/solr_init/create_core.sh
A circle.yml
M test-core.ini
Log Message:
-----------
Enable CircleCI on 2.4.x
Commit: 01d173f530f6a7cee26793d49d44a950c910579b
https://github.com/ckan/ckan/commit/01d173f530f6a7cee26793d49d44a950c910579b
Author: yingqiaogit <qiaoying at hotmail.com>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/controllers/package.py
Log Message:
-----------
retrieve the title of a package in a selected lanuage rather than in the form of a dictionary when a multi-language plugin is used
Conflicts:
ckan/controllers/package.py
Commit: 0136f15e1cd7313c3137c0653e2630b9f104b94a
https://github.com/ckan/ckan/commit/0136f15e1cd7313c3137c0653e2630b9f104b94a
Author: amercader <amercadero at gmail.com>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/logic/action/delete.py
M ckan/tests/logic/action/test_get.py
Log Message:
-----------
[#3078] Don't show deleted users/datasets on member_list
The members table is stateful, ie it has a state=active/deleted field which
was not updated when deleting a dataset or user.
This commit sets the state of all user/dataset memberships to deleted
and adds some tests
Conflicts:
ckan/tests/logic/action/test_get.py
Commit: f57a691cf8222d4ec52ed7243fbe2db6b61f14c8
https://github.com/ckan/ckan/commit/f57a691cf8222d4ec52ed7243fbe2db6b61f14c8
Author: Florian Brucker <florian.brucker at mb.karlsruhe.de>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/ckan_nose_plugin.py
M ckan/lib/base.py
M ckan/lib/datapreview.py
M ckan/lib/helpers.py
M ckan/logic/action/get.py
Log Message:
-----------
Fix #3093: Incorrect usage of `str.split`.
Commit: 27cd3a9fc41253443798e02b1f966ef32591c2ef
https://github.com/ckan/ckan/commit/27cd3a9fc41253443798e02b1f966ef32591c2ef
Author: amercader <amercadero at gmail.com>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/logic/action/create.py
M ckan/logic/schema.py
M ckan/tests/logic/action/test_create.py
Log Message:
-----------
[#3108] Raise validation errors on group/org_member_create
Add not_missing to the schema and raise the errors on the action. Adds
some tests as well
Commit: e50d4b0275eb6114e2e2590c2c7b4f78c48f87ac
https://github.com/ckan/ckan/commit/e50d4b0275eb6114e2e2590c2c7b4f78c48f87ac
Author: amercader <amercadero at gmail.com>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/logic/schema.py
Log Message:
-----------
[#3108] Allow to renferece groups and users by id or name
Conflicts:
ckan/logic/schema.py
Commit: 9f0b0c9e18929665321a624b0a971ba2635da705
https://github.com/ckan/ckan/commit/9f0b0c9e18929665321a624b0a971ba2635da705
Author: amercader <amercadero at gmail.com>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/tests/logic/action/test_create.py
Log Message:
-----------
[#3108] Add back plugin unload command
Commit: 63d53499a3ef8c0cd86bd6f701bfedd106d31476
https://github.com/ckan/ckan/commit/63d53499a3ef8c0cd86bd6f701bfedd106d31476
Author: amercader <amercadero at gmail.com>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/logic/schema.py
Log Message:
-----------
[#3108] Remove redundant validator
Commit: d3735adcca2977fd07de02687b63ed936d897d96
https://github.com/ckan/ckan/commit/d3735adcca2977fd07de02687b63ed936d897d96
Author: Sergey Motornyuk <sergey.motornyuk at linkdigital.com.au>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/public/base/javascript/modules/resource-view-filters-form.js
Log Message:
-----------
Fix autocomplete request url.
Wrapped previously hardcoded url into ckan.url function
Commit: 3fb6d91d511af6297734b3bdbf872d9a749f015e
https://github.com/ckan/ckan/commit/3fb6d91d511af6297734b3bdbf872d9a749f015e
Author: amercader <amercadero at gmail.com>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/logic/action/update.py
M ckan/tests/logic/action/test_update.py
Log Message:
-----------
[#3199] Update revisions on bulk operations
`bulk_update_private`, `bulk_update_public` and ``bulk_update_delete`
changed the `package` table and the search index but not the revision
table, which caused the changes to not be reflected everywhere.
This fixes the model query and adds a bunch of tests.
Conflicts:
ckan/tests/logic/action/test_update.py
Commit: 2841aeac892536c8d5f2a11590541d90fb0c2c03
https://github.com/ckan/ckan/commit/2841aeac892536c8d5f2a11590541d90fb0c2c03
Author: amercader <amercadero at gmail.com>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckan/logic/action/update.py
M ckan/tests/logic/action/test_update.py
Log Message:
-----------
[#3199] Only update the latest revision
Commit: efa7ae6f42d11fe2afbfa560c59fdc48014a6e0a
https://github.com/ckan/ckan/commit/efa7ae6f42d11fe2afbfa560c59fdc48014a6e0a
Author: amercader <amercadero at gmail.com>
Date: 2016-08-25 (Thu, 25 Aug 2016)
Changed paths:
M ckanext/reclineview/theme/public/vendor/recline/recline.js
Log Message:
-----------
[#3162] Replace MapQuest tiles in Recline with Stamen Terrain
Commit: b80651316c9d1defa581a86f4fcf6bd45b956949
https://github.com/ckan/ckan/commit/b80651316c9d1defa581a86f4fcf6bd45b956949
Author: Ian Ward <ian at excess.org>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
M circle.yml
Log Message:
-----------
[#2937] pin node version, don't reinstall phantomjs if cached
Commit: a23264b6117dd5d2f17d342e78bb9dc2df4ddd95
https://github.com/ckan/ckan/commit/a23264b6117dd5d2f17d342e78bb9dc2df4ddd95
Author: Ian Ward <ian at excess.org>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
A .circleci-matrix.yml
M circle.yml
Log Message:
-----------
[#2933] split tests across circle CI containers with circleci-matrix
Commit: c1d37685f4fd81b8b32b53761427b81738e62d2b
https://github.com/ckan/ckan/commit/c1d37685f4fd81b8b32b53761427b81738e62d2b
Author: Ian Ward <ian at excess.org>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
M .circleci-matrix.yml
M circle.yml
Log Message:
-----------
[#2933] create test report dir inside circleci-matrix
Commit: c56d768c4583a2c843234ec011739f9e1b773ce7
https://github.com/ckan/ckan/commit/c56d768c4583a2c843234ec011739f9e1b773ce7
Author: Ian Ward <ian at excess.org>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
A ckan/tests/i18n/__init__.py
Log Message:
-----------
[#2933] add missing tests/i18n/__init__.py
Commit: 31c80ed96bcd727171d9aa6ec82efcb0132f14a6
https://github.com/ckan/ckan/commit/31c80ed96bcd727171d9aa6ec82efcb0132f14a6
Author: Ian Ward <ian at excess.org>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
M .circleci-matrix.yml
Log Message:
-----------
[#2933] remove old tests
Commit: 5f785ca6203d280c1890c5d5bf66799e295fd39a
https://github.com/ckan/ckan/commit/5f785ca6203d280c1890c5d5bf66799e295fd39a
Author: Ian Ward <ian at excess.org>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
M .circleci-matrix.yml
Log Message:
-----------
[#2933] use --segments instead of list of test dirs
Commit: 6978f1477a2a45809353b66c1e648afae0b8a98d
https://github.com/ckan/ckan/commit/6978f1477a2a45809353b66c1e648afae0b8a98d
Author: Ian Ward <ian at excess.org>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
M ckan/tests/legacy/lib/test_helpers.py
Log Message:
-----------
[#2933] legacy test fix: clean up after creating test data
Commit: 8ef2d23aefff98c57e6340b98225faab735b762a
https://github.com/ckan/ckan/commit/8ef2d23aefff98c57e6340b98225faab735b762a
Author: Ian Ward <ian at excess.org>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
M circle.yml
Log Message:
-----------
[#2933] cache circleci-matrix
Commit: 481efa40e24dd31a747261458448d11ba8d54125
https://github.com/ckan/ckan/commit/481efa40e24dd31a747261458448d11ba8d54125
Author: amercader <amercadero at gmail.com>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
M ckan/controllers/feed.py
Log Message:
-----------
[#2955] Fix group feeds returning no datasets
Commit: 5bf28a97484a643e515a92dae8f963de61962d7d
https://github.com/ckan/ckan/commit/5bf28a97484a643e515a92dae8f963de61962d7d
Author: amercader <amercadero at gmail.com>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
M ckan/tests/controllers/test_feed.py
Log Message:
-----------
[#2955] Add tests for feed controller
Commit: ae82a74b402e02a609643550ea1b631c1dd48655
https://github.com/ckan/ckan/commit/ae82a74b402e02a609643550ea1b631c1dd48655
Author: amercader <amercadero at gmail.com>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
A .circleci-matrix.yml
M circle.yml
A ckan/tests/i18n/__init__.py
M ckan/tests/legacy/lib/test_helpers.py
Log Message:
-----------
Merge branch 'fix-tests-2.4.x' into release-v2.4.4
Commit: 62273e96b864e170ba81bb32934b68d08e1b0fc0
https://github.com/ckan/ckan/commit/62273e96b864e170ba81bb32934b68d08e1b0fc0
Author: amercader <amercadero at gmail.com>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
M ckanext/datastore/db.py
Log Message:
-----------
[#2969] Fix unicode error when indexing field of type JSON
Commit: 7da79c93702678e7b603c7b5c37f297691329992
https://github.com/ckan/ckan/commit/7da79c93702678e7b603c7b5c37f297691329992
Author: amercader <amercadero at gmail.com>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
M ckanext/datastore/tests/test_upsert.py
Log Message:
-----------
[#2969] Add a couple of tests
Commit: e3d8ae24d678086f752f9d22d88b80a986941d93
https://github.com/ckan/ckan/commit/e3d8ae24d678086f752f9d22d88b80a986941d93
Author: amercader <amercadero at gmail.com>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
M ckanext/reclineview/theme/public/vendor/recline/recline.js
Log Message:
-----------
[#2923] Proper sanitation of header name on SlickGrid view
Fixes #2923
Cherry-picked from @smotornyuk patch on okfn/recline#498
Commit: 00cfee09ebc72bc09743755be37833445872bbac
https://github.com/ckan/ckan/commit/00cfee09ebc72bc09743755be37833445872bbac
Author: Louis des Landes <ldeslandes at swin.edu.au>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
M ckan/tests/helpers.py
Log Message:
-----------
If a test app exists, reset it for each test
Conflicts:
ckan/tests/helpers.py
Commit: cc8a6a81608948e0aff505f1deca4d66917d652c
https://github.com/ckan/ckan/commit/cc8a6a81608948e0aff505f1deca4d66917d652c
Author: Louis des Landes <ldeslandes at swin.edu.au>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
M ckan/controllers/user.py
M ckan/tests/controllers/test_user.py
Log Message:
-----------
Fix user log out on username change
Fixes #2394
Conflicts:
ckan/tests/controllers/test_user.py
Commit: 8b4c0b9e3f45b4afc92671a6ee7f0af14afcdfad
https://github.com/ckan/ckan/commit/8b4c0b9e3f45b4afc92671a6ee7f0af14afcdfad
Author: amercader <amercadero at gmail.com>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
M ckan/tests/helpers.py
Log Message:
-----------
Fix wrong method in tests helpers
Commit: 9bb37f406483b1da74a15f6d3b46fbf8a8b7e68c
https://github.com/ckan/ckan/commit/9bb37f406483b1da74a15f6d3b46fbf8a8b7e68c
Author: Knut Hühne <knut at k-nut.eu>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
M ckan/tests/factories.py
Log Message:
-----------
Pad Groups and Org names from factories with zeros
The test in ckan/tests/controllers/test_group.py would sometimes fail
when run in an unfortunate order. The
`test_page_thru_list_of_orgs_preserves_sort_order` and
`test_page_thru_list_of_groups_preserves_sort_order` would fail because
some organizations had already been created by oyher tests and the numbering would
start a 5 instead of 1. And because the sorting was done via strings (so
`Group 5` came after `Group 31` the test would fail. By always padding
them with zeros this should not happend anymore and make the tests more
stable (So it is `Group 05` now).
Commit: a5edb9f754e499a34f59a1141c53d403ef4e9132
https://github.com/ckan/ckan/commit/a5edb9f754e499a34f59a1141c53d403ef4e9132
Author: Knut Hühne <knut at k-nut.eu>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
M ckan/tests/factories.py
Log Message:
-----------
Pad all things that come from factories with zeros
Commit: 4413c1894e62448dbd5b07a694190cce81f0eb5c
https://github.com/ckan/ckan/commit/4413c1894e62448dbd5b07a694190cce81f0eb5c
Author: amercader <amercadero at gmail.com>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
M ckan/controllers/user.py
M ckan/tests/controllers/test_user.py
Log Message:
-----------
Revert "Fix user log out on username change"
This reverts commit cc8a6a81608948e0aff505f1deca4d66917d652c.
Commit: 23101f10891d8c97a024695b6f9087b113b01275
https://github.com/ckan/ckan/commit/23101f10891d8c97a024695b6f9087b113b01275
Author: amercader <amercadero at gmail.com>
Date: 2016-08-26 (Fri, 26 Aug 2016)
Changed paths:
M ckan/controllers/user.py
Log Message:
-----------
[#2394] Fix user log out on username change
Commit: ad2cb6ec8d9713f132db01dd4306a516700f4511
https://github.com/ckan/ckan/commit/ad2cb6ec8d9713f132db01dd4306a516700f4511
Author: Sergey Motornyuk <sergey.motornyuk at linkdigital.com.au>
Date: 2016-09-14 (Wed, 14 Sep 2016)
Changed paths:
M ckan/templates/package/read.rdf
Log Message:
-----------
RDF template returns server error if package has no extras
In very special situations, pkg_dict hasn't such key as 'extras'.
it results in server error, because rdf template uses `None` as
fallback value.
Replaced it with empty list - it's more logically
Commit: d183b2f777039441bc5dc6b0d52944f701e418a9
https://github.com/ckan/ckan/commit/d183b2f777039441bc5dc6b0d52944f701e418a9
Author: Matt Fullerton <mattfullerton at users.noreply.github.com>
Date: 2016-10-14 (Fri, 14 Oct 2016)
Changed paths:
M ckanext/reclineview/theme/public/recline_view.js
Log Message:
-----------
Fixes #2657 by not ignoring filters when embedded
Commit: f17ce585597bf1f41dca5f5cfadb189c5ec2e7b6
https://github.com/ckan/ckan/commit/f17ce585597bf1f41dca5f5cfadb189c5ec2e7b6
Author: Yan <yan.rudneko at linkdigital.com.au>
Date: 2016-10-14 (Fri, 14 Oct 2016)
Changed paths:
M ckan/logic/action/get.py
Log Message:
-----------
[#2346] Dashboard_activity_list_html() dosen't pass user id
Load more don't work on Dashboard page, because dashboard_activity_list_html() don't pass id as an argument, so in activity-stream.js the user_activity_list_html() gives us an error.
Fix it by passing id from context as we do with model= context['model']. As a result context['user'] gives us the name of current user and we can use it, because user_activity_list_html() can take both id and username as id.
Commit: 44477a0bb878367e127b18ce1354f9c1d4c1eb73
https://github.com/ckan/ckan/commit/44477a0bb878367e127b18ce1354f9c1d4c1eb73
Author: amercader <amercadero at gmail.com>
Date: 2016-10-26 (Wed, 26 Oct 2016)
Changed paths:
M .gitattributes
M ckan/i18n/ja/LC_MESSAGES/ckan.po
M ckan/i18n/pt_BR/LC_MESSAGES/ckan.po
M ckan/i18n/ru/LC_MESSAGES/ckan.po
M ckan/i18n/tr/LC_MESSAGES/ckan.po
M ckan/i18n/zh_TW/LC_MESSAGES/ckan.po
Log Message:
-----------
Update translations from Transifex before 2.4.4
Commit: c5ad2fd1695ab282b5761ed251515eef4a0900a4
https://github.com/ckan/ckan/commit/c5ad2fd1695ab282b5761ed251515eef4a0900a4
Author: amercader <amercadero at gmail.com>
Date: 2016-10-26 (Wed, 26 Oct 2016)
Changed paths:
M ckan/i18n/ar/LC_MESSAGES/ckan.mo
M ckan/i18n/bg/LC_MESSAGES/ckan.mo
M ckan/i18n/ca/LC_MESSAGES/ckan.mo
M ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo
M ckan/i18n/da_DK/LC_MESSAGES/ckan.mo
M ckan/i18n/de/LC_MESSAGES/ckan.mo
M ckan/i18n/el/LC_MESSAGES/ckan.mo
M ckan/i18n/en_AU/LC_MESSAGES/ckan.mo
M ckan/i18n/en_GB/LC_MESSAGES/ckan.mo
M ckan/i18n/es/LC_MESSAGES/ckan.mo
M ckan/i18n/es_AR/LC_MESSAGES/ckan.mo
M ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo
M ckan/i18n/fi/LC_MESSAGES/ckan.mo
M ckan/i18n/fr/LC_MESSAGES/ckan.mo
M ckan/i18n/he/LC_MESSAGES/ckan.mo
M ckan/i18n/hr/LC_MESSAGES/ckan.mo
M ckan/i18n/hu/LC_MESSAGES/ckan.mo
M ckan/i18n/id/LC_MESSAGES/ckan.mo
M ckan/i18n/is/LC_MESSAGES/ckan.mo
M ckan/i18n/it/LC_MESSAGES/ckan.mo
M ckan/i18n/ja/LC_MESSAGES/ckan.mo
M ckan/i18n/km/LC_MESSAGES/ckan.mo
M ckan/i18n/ko_KR/LC_MESSAGES/ckan.mo
M ckan/i18n/lt/LC_MESSAGES/ckan.mo
M ckan/i18n/lv/LC_MESSAGES/ckan.mo
M ckan/i18n/mn_MN/LC_MESSAGES/ckan.mo
M ckan/i18n/ne/LC_MESSAGES/ckan.mo
M ckan/i18n/nl/LC_MESSAGES/ckan.mo
M ckan/i18n/no/LC_MESSAGES/ckan.mo
M ckan/i18n/pl/LC_MESSAGES/ckan.mo
M ckan/i18n/pt_BR/LC_MESSAGES/ckan.mo
M ckan/i18n/pt_PT/LC_MESSAGES/ckan.mo
M ckan/i18n/ro/LC_MESSAGES/ckan.mo
M ckan/i18n/ru/LC_MESSAGES/ckan.mo
M ckan/i18n/sk/LC_MESSAGES/ckan.mo
M ckan/i18n/sl/LC_MESSAGES/ckan.mo
M ckan/i18n/sq/LC_MESSAGES/ckan.mo
M ckan/i18n/sr/LC_MESSAGES/ckan.mo
M ckan/i18n/sr_Latn/LC_MESSAGES/ckan.mo
M ckan/i18n/sv/LC_MESSAGES/ckan.mo
M ckan/i18n/th/LC_MESSAGES/ckan.mo
M ckan/i18n/tl/LC_MESSAGES/ckan.mo
M ckan/i18n/tr/LC_MESSAGES/ckan.mo
M ckan/i18n/uk_UA/LC_MESSAGES/ckan.mo
M ckan/i18n/vi/LC_MESSAGES/ckan.mo
M ckan/i18n/zh_CN/LC_MESSAGES/ckan.mo
M ckan/i18n/zh_TW/LC_MESSAGES/ckan.mo
Log Message:
-----------
Compile strings ahead of 2.4.4
Commit: 6fa0b8a76fd442166aa2b9e523c55510c35c506e
https://github.com/ckan/ckan/commit/6fa0b8a76fd442166aa2b9e523c55510c35c506e
Author: amercader <amercadero at gmail.com>
Date: 2016-10-26 (Wed, 26 Oct 2016)
Changed paths:
M ckan/public/base/css/main.debug.min.css
A ckan/public/base/i18n/es_AR.js
A ckan/public/base/i18n/es_AR.min.js
M ckan/public/base/i18n/is.js
M ckan/public/base/i18n/is.min.js
M ckan/public/base/i18n/ko_KR.js
M ckan/public/base/i18n/ko_KR.min.js
M ckan/public/base/i18n/no.js
M ckan/public/base/i18n/no.min.js
M ckan/public/base/i18n/pt_PT.js
M ckan/public/base/i18n/pt_PT.min.js
M ckan/public/base/i18n/ru.js
M ckan/public/base/i18n/ru.min.js
M ckan/public/base/i18n/sk.js
M ckan/public/base/i18n/sk.min.js
M ckan/public/base/i18n/sq.js
M ckan/public/base/i18n/sq.min.js
A ckan/public/base/i18n/tl.js
A ckan/public/base/i18n/tl.min.js
M ckan/public/base/javascript/modules/resource-view-filters-form.min.js
M ckanext/reclineview/theme/public/recline_view.min.js
Log Message:
-----------
Frontend build before 2.4.4
Commit: 8b1871f9365c8263f7fc124827775a5bd3383214
https://github.com/ckan/ckan/commit/8b1871f9365c8263f7fc124827775a5bd3383214
Author: amercader <amercadero at gmail.com>
Date: 2016-11-02 (Wed, 02 Nov 2016)
Changed paths:
M CHANGELOG.rst
Log Message:
-----------
Update CHANGELOG before 2.4.4 release
Commit: dbf4750b9f2973e52d557c0d4160e085132fbf78
https://github.com/ckan/ckan/commit/dbf4750b9f2973e52d557c0d4160e085132fbf78
Author: amercader <amercadero at gmail.com>
Date: 2016-11-02 (Wed, 02 Nov 2016)
Changed paths:
M ckan/__init__.py
Log Message:
-----------
Update version number for 2.4.4 release
Compare: https://github.com/ckan/ckan/compare/7d2702f05a1a...dbf4750b9f29
More information about the ckan-changes
mailing list