Skip to content

Commit

Permalink
chore: release v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
y-lohse committed Nov 10, 2017
1 parent a54bbce commit 6da22a5
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 14 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Removed
- none yet

## [v0.4.1] - 2017-11-10
### Added
- Ability to use sqlite as a pouch adapter, if provided by the host app.

## [v0.4.0] - 2017-11-07
### Added
- Added PouchDB as a direct dependency.
Expand Down Expand Up @@ -256,7 +260,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Refactoring on offline to return Promise


[Unreleased]: https://github.com/cozy/cozy-client-js/compare/v0.4.0...HEAD
[Unreleased]: https://github.com/cozy/cozy-client-js/compare/v0.4.1...HEAD
[v0.4.1]: https://github.com/cozy/cozy-client-js/compare/v0.4.0...v0.4.1
[v0.4.0]: https://github.com/cozy/cozy-client-js/compare/v0.3.20...v0.4.0
[v0.3.20]: https://github.com/cozy/cozy-client-js/compare/v0.3.19...v0.3.20
[v0.3.19]: https://github.com/cozy/cozy-client-js/compare/v0.3.18...v0.3.19
Expand Down
4 changes: 3 additions & 1 deletion dist/cozy-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -9480,7 +9480,8 @@ return /******/ (function(modules) { // webpackBootstrap

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

var replicationOfflineError = exports.replicationOfflineError = 'Replication abort, your device is actually offline.';
var replicationOfflineError = exports.replicationOfflineError = 'Replication abort, your device is actually offline.'; /* global pouchdbAdapterCordovaSqlite */


var pluginLoaded = false;

Expand Down Expand Up @@ -9560,6 +9561,7 @@ return /******/ (function(modules) { // webpackBootstrap

if (!pluginLoaded) {
_pouchdb2.default.plugin(_pouchdbFind2.default);
if (typeof pouchdbAdapterCordovaSqlite !== 'undefined') _pouchdb2.default.plugin(pouchdbAdapterCordovaSqlite);
pluginLoaded = true;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/cozy-client.js.map

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions dist/cozy-client.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cozy-client.min.js.map

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion dist/cozy-client.node.js

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

2 changes: 1 addition & 1 deletion dist/cozy-client.node.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cozy-client-js",
"version": "0.4.0",
"version": "0.4.1",
"description": "Javascript library to interact with a cozy",
"main": "dist/cozy-client.node.js",
"browser": "dist/cozy-client.js",
Expand Down

0 comments on commit 6da22a5

Please sign in to comment.