# HG changeset patch # User tflorac@dagon.home # Date 1546189708 -3600 # Node ID e5cc001c64764f8c3d5d3164b317c46ac74fd7a2 # Parent a91030bda803754dbbe4076b8f0ae563ebd362c4 Version 0.1.20 diff -r a91030bda803 -r e5cc001c6476 .hgtags --- a/.hgtags Sun Dec 30 18:08:03 2018 +0100 +++ b/.hgtags Sun Dec 30 18:08:28 2018 +0100 @@ -22,3 +22,4 @@ 0baf6315d8387724e85fcfa60289f904975364f3 0.1.17 17bc8afd7e4adf81450af3da73de7a3b2e6e477d 0.1.18 e7c1926fb3f8c6d29959dd9647ba447bb1458cc7 0.1.19 +6d725a84f3ff6382880865c5c2d111dd60ccb1ea 0.1.20 diff -r a91030bda803 -r e5cc001c6476 buildout.cfg --- a/buildout.cfg Sun Dec 30 18:08:03 2018 +0100 +++ b/buildout.cfg Sun Dec 30 18:08:28 2018 +0100 @@ -76,4 +76,4 @@ eggs = pyams_content_es [test] [versions] -pyams_content_es = 0.1.19 +pyams_content_es = 0.1.20 diff -r a91030bda803 -r e5cc001c6476 docs/HISTORY.txt --- a/docs/HISTORY.txt Sun Dec 30 18:08:03 2018 +0100 +++ b/docs/HISTORY.txt Sun Dec 30 18:08:28 2018 +0100 @@ -1,6 +1,10 @@ History ======= +0.1.20 +------ + - updated resources attributes + 0.1.19 ------ - added resource index info diff -r a91030bda803 -r e5cc001c6476 docs/README.txt --- a/docs/README.txt Sun Dec 30 18:08:03 2018 +0100 +++ b/docs/README.txt Sun Dec 30 18:08:28 2018 +0100 @@ -48,9 +48,18 @@ "resource_info": { "type": "object", "properties": { + "original_title": { + "type": "text" + }, "author": { "type": "text" }, + "translator": { + "type": "text" + }, + "illustrator": { + "type": "text" + }, "drawer": { "type": "text" }, diff -r a91030bda803 -r e5cc001c6476 docs/mappings/index-settings.json --- a/docs/mappings/index-settings.json Sun Dec 30 18:08:03 2018 +0100 +++ b/docs/mappings/index-settings.json Sun Dec 30 18:08:28 2018 +0100 @@ -337,9 +337,18 @@ "resource_info": { "type": "object", "properties": { + "original_title": { + "type": "text" + }, "author": { "type": "text" }, + "translator": { + "type": "text" + }, + "illustrator": { + "type": "text" + }, "drawer": { "type": "text" }, diff -r a91030bda803 -r e5cc001c6476 setup.py --- a/setup.py Sun Dec 30 18:08:03 2018 +0100 +++ b/setup.py Sun Dec 30 18:08:28 2018 +0100 @@ -22,7 +22,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.1.19' +version = '0.1.20' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [] diff -r a91030bda803 -r e5cc001c6476 src/pyams_content_es.egg-info/PKG-INFO --- a/src/pyams_content_es.egg-info/PKG-INFO Sun Dec 30 18:08:03 2018 +0100 +++ b/src/pyams_content_es.egg-info/PKG-INFO Sun Dec 30 18:08:28 2018 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pyams-content-es -Version: 0.1.19 +Version: 0.1.20 Summary: PyAMS content interfaces and classes for ElasticSearch indexation Home-page: http://hg.ztfy.org/pyams/pyams_content_es Author: Thierry Florac @@ -56,9 +56,18 @@ "resource_info": { "type": "object", "properties": { + "original_title": { + "type": "text" + }, "author": { "type": "text" }, + "translator": { + "type": "text" + }, + "illustrator": { + "type": "text" + }, "drawer": { "type": "text" }, @@ -159,6 +168,10 @@ History ======= + 0.1.20 + ------ + - updated resources attributes + 0.1.19 ------ - added resource index info