Skip to content

Commit

Permalink
Merge develop and resolve conflicts.
Browse files Browse the repository at this point in the history
  • Loading branch information
frankban committed Feb 6, 2017
2 parents 2bafac9 + 10d35a4 commit 5fc13b0
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.2.5
current_version = 2.2.7
commit = True
tag = True
tag_name = {new_version}
Expand Down
9 changes: 9 additions & 0 deletions CHANGES.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
- 2.2.7:

- (Fix) Correctly clear cookies when visiting from the storefront.
- (Fix) Exposed applications in bundles no longer halt deployment.

- 2.2.6:

- (Fix) Anonymous and demo now connect to the controller.

- 2.2.5:

- Enable deploy-target queries to work with new deployment flow.
Expand Down
2 changes: 2 additions & 0 deletions jujugui/static/gui/src/app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ YUI.add('juju-gui', function(Y) {
views = Y.namespace('juju.views'),
widgets = Y.namespace('juju.widgets'),
d3 = Y.namespace('d3');

/**
* The main app class.
*
Expand Down Expand Up @@ -336,6 +337,7 @@ YUI.add('juju-gui', function(Y) {

/**
Return the current model unique identifier.
@method _getModelUUID
@return {String} The model UUID.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ describe('DeploymentFlow', function() {
assert.equal(changeState.callCount, 1);
});

it('allow or disallow deployments', function() {
it('allows or disallows deployments', function() {
const tests = [{
about: 'no model name',
state: {modelName: ''},
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Juju GUI",
"manifest_version": 2,
"version": "2.2.5",
"version": "2.2.7",

"description": "Manage your Juju environment",
"icons": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Juju Developers",
"name": "juju-gui",
"description": "Juju GUI build dependencies",
"version": "2.2.5",
"version": "2.2.7",
"homepage": "http://launchpad.net/juju-gui",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def parse_requirements(filename):
tests_requires = parse_requirements("test-requirements.txt")

setup(name='jujugui',
version='2.2.5',
version='2.2.7',
description='jujugui',
classifiers=[
"Programming Language :: Python",
Expand Down

0 comments on commit 5fc13b0

Please sign in to comment.