Skip to content

Commit

Permalink
Merge pull request #5 from eea/develop
Browse files Browse the repository at this point in the history
Merge #122622
  • Loading branch information
alecghica authored Nov 25, 2020
2 parents f8db6eb + 78332d1 commit e93955a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
5 changes: 5 additions & 0 deletions docs/HISTORY.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

1.4 - (2020-11-25)
---------------------------
* Change: Added collective.taxonomy dependency in metadata.xml
[iulianpetchesi refs #122622]

1.3 - (2020-11-24)
---------------------------
* Change: Added @geodata RestAPI endpoint
Expand Down
3 changes: 3 additions & 0 deletions eea/geolocation/profiles/default/metadata.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata>
<version>1.0</version>
<dependencies>
<dependency>profile-collective.taxonomy:default</dependency>
</dependencies>
</metadata>
4 changes: 4 additions & 0 deletions eea/geolocation/tests/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,16 @@ def setUpZope(self, app, configurationContext):
""" Setup Zope
"""
import eea.geolocation
import collective.taxonomy
self.loadZCML(package=collective.taxonomy)
self.loadZCML(package=eea.geolocation)
z2.installProduct(app, 'collective.taxonomy')
z2.installProduct(app, 'eea.geolocation')

def setUpPloneSite(self, portal):
""" Setup Plone
"""
applyProfile(portal, 'collective.taxonomy:default')
applyProfile(portal, 'eea.geolocation:default')

# Default workflow
Expand Down
2 changes: 1 addition & 1 deletion eea/geolocation/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3
1.4

0 comments on commit e93955a

Please sign in to comment.