Skip to content

Commit

Permalink
chore(*): release 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
0x-r4bbit committed Aug 5, 2014
1 parent 7085bc0 commit c29a19b
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 21 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<a name="0.12.0"></a>
## 0.12.0 (2014-08-05)


<a name="0.11.0"></a>
## 0.11.0 (2014-08-04)

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sofa-couch-service",
"version": "0.11.0",
"version": "0.12.0",
"homepage": "http://www.sofa.io",
"authors": [
"Pascal Precht <pascal@couchcommerce.com>"
Expand Down
72 changes: 54 additions & 18 deletions dist/sofa.couchService.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* sofa-couch-service - v0.11.0 - 2014-08-04
* sofa-couch-service - v0.12.0 - 2014-08-05
*
*
* Copyright (c) 2014 CouchCommerce GmbH (http://www.couchcommerce.com / http://www.sofa.io) and other contributors
Expand All @@ -11,8 +11,19 @@
'use strict';
/* global sofa */
/**
* @name CouchService
* @namespace sofa.CouchService
* @sofadoc class
* @name sofa.CouchService
*
* @package sofa-couch-service
* @requiresPackage sofa-core
* @requiresPackage sofa-http-service
* @requiresPackage sofa-q-service
*
* @requires sofa.HttpService
* @requires sofa.QService
* @requires sofa.configService
*
* @distFile dist/sofa.couchService.js
*
* @description
* `CouchService` let's you interact with the CouchCommerce API. It provides methods
Expand Down Expand Up @@ -41,7 +52,8 @@ sofa.define('sofa.CouchService', function ($http, $q, configService) {
sofa.observable.mixin(self);

/**
* @method isAChildAliasOfB
* @sofadoc method
* @name sofa.CouchService#isAChildAliasOfB
* @memberof sofa.CouchService
*
* @description
Expand All @@ -66,7 +78,8 @@ sofa.define('sofa.CouchService', function ($http, $q, configService) {
};

/**
* @method isAParentOfB
* @sofadoc method
* @name sofa.CouchService#isAParentOfB
* @memberof sofa.CouchService
*
* @description
Expand All @@ -85,7 +98,8 @@ sofa.define('sofa.CouchService', function ($http, $q, configService) {
};

/**
* @method isAChildOfB
* @sofadoc method
* @name sofa.CouchService#isAChildOfB
* @memberof sofa.CouchService
*
* @description
Expand Down Expand Up @@ -119,7 +133,8 @@ sofa.define('sofa.CouchService', function ($http, $q, configService) {
};

/**
* @method getCategory
* @sofadoc method
* @name sofa.CouchService#getCategory
* @memberof sofa.CouchService
*
* @description
Expand Down Expand Up @@ -148,14 +163,15 @@ sofa.define('sofa.CouchService', function ($http, $q, configService) {
};

/**
* @method getProducts
* @sofadoc method
* @name sofa.CouchService#getProducts
* @memberof sofa.CouchService
*
* @description
* Fetches all products of a given category.
*
* @param {int} categoryUrlId The urlId of the category to fetch the products from.
* @preturn {Promise} A promise that gets resolved with products.
* @return {Promise} A promise that gets resolved with products.
*/
self.getProducts = function (categoryUrlId, config) {

Expand Down Expand Up @@ -242,7 +258,8 @@ sofa.define('sofa.CouchService', function ($http, $q, configService) {
};

/**
* @method getNextProduct
* @sofadoc method
* @name sofa.CouchService#getNextProduct
* @memberof sofa.CouchService
*
* @description
Expand All @@ -268,7 +285,8 @@ sofa.define('sofa.CouchService', function ($http, $q, configService) {
};

/**
* @method getPreviousProduct
* @sofadoc method
* @name sofa.CouchService#getPreviousProduct
* @memberof sofa.CouchService
*
* @description
Expand Down Expand Up @@ -316,7 +334,8 @@ sofa.define('sofa.CouchService', function ($http, $q, configService) {
};

/**
* @method getProduct
* @sofadoc method
* @name sofa.CouchService#getProduct
* @memberof sofa.CouchService
*
* @description
Expand Down Expand Up @@ -612,8 +631,15 @@ sofa.define('sofa.CategoryTreeResolver', function ($http, $q, configService) {
'use strict';
/* global sofa */
/**
* @name ProductComparer
* @namespace cc.comparer.ProductComparer
* @sofadoc class
* @name sofa.comparer.ProductComparer
* @namespace sofa.comparer
*
* @package sofa-couch-service
* @requiresPackage sofa-core
* @requiresPackage sofa-http-service
*
* @distFile dist/sofa.checkoutService.js
*
* @description
*
Expand Down Expand Up @@ -689,8 +715,16 @@ sofa.HashService = function () {
'use strict';
/* global sofa */
/**
* @name CategoryMap
* @namespace sofa.helper.CategoryMap
* @sofadoc class
* @name sofa.helper.CategoryMap
* @namespace sofa.helper
*
* @package sofa-checkout-service
* @requiresPackage sofa-core
* @requiresPackage sofa-http-service
* @requiresPackage sofa-q-service
*
* @distFile dist/sofa.CouchService.js
*
* @description
* Category mapping service that sets up mappings between category urls and category
Expand All @@ -704,7 +738,8 @@ sofa.define('sofa.util.CategoryMap', function () {
var map = {};

/**
* @method addCategory
* @sofadoc method
* @name sofa.helper.CategoryMap#addCategory
* @memberof sofa.helper.CategoryMap
*
* @description
Expand All @@ -727,7 +762,8 @@ sofa.define('sofa.util.CategoryMap', function () {
};

/**
* @method getCategory
* @sofadoc method
* @name sofa.helper.CategoryMap#getCategory
* @memberof sofa.CategoryMap
*
* @description
Expand Down
2 changes: 1 addition & 1 deletion dist/sofa.couchService.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sofa-couch-service",
"version": "0.11.0",
"version": "0.12.0",
"description": "Sofa Web SDK couch service component.",
"main": "dist/sofa.couchService.js",
"scripts": {
Expand Down

0 comments on commit c29a19b

Please sign in to comment.