diff --git a/CHANGES.rst b/CHANGES.rst index f182a6c..0d659c3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,9 @@ +0.2.1 2015-01-27 +---------------- + +- Add missing popovers. + + 0.2.0 2015-01-27 ---------------- diff --git a/gulpfile.js b/gulpfile.js index bc46e55..b46b230 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -58,7 +58,7 @@ gulp.task('dist', ['sass', 'uglify'], function() { gulp.src('www/tornado.html') .pipe(rename('index.html')) .pipe(gulp.dest(paths.dist)); - gulp.src('www/{images,templates,lib/ionic/fonts}/*', {base: 'www'}) + gulp.src('www/{images,templates,lib/ionic/fonts}/**', {base: 'www'}) .pipe(gulp.dest(paths.dist)); gulp.src('www/css/*.min.css', {base: 'www'}) .pipe(gulp.dest(paths.dist)); diff --git a/mopidy_mobile/__init__.py b/mopidy_mobile/__init__.py index c99d7e2..7fd37db 100644 --- a/mopidy_mobile/__init__.py +++ b/mopidy_mobile/__init__.py @@ -2,7 +2,7 @@ from mopidy import config, ext -__version__ = '0.2.0' +__version__ = '0.2.1' class Extension(ext.Extension):