Skip to content
This repository has been archived by the owner on Aug 6, 2022. It is now read-only.

Commit

Permalink
Bumped up the version and updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
sconix committed Mar 27, 2017
1 parent 2a94932 commit b5ae42e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2.5.1 Bug fix release

- Fixed problems from the name change

2.5.0 Last 2.x release

- Preparing for moving to Angular 4.x
Expand Down
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ngx-swiper-wrapper-example",
"description": "Example app for the ngx-swiper-wrapper",
"license": "MIT",
"version": "2.5.0",
"version": "2.5.1",
"tslint": {
"extends": "./tslint.json"
},
Expand Down
6 changes: 3 additions & 3 deletions example/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { SwiperComponent, SwiperConfigInterface } from 'ngx-swiper-wrapper';
styleUrls: ['app.component.css']
})
export class AppComponent {
private slides = [
public slides = [
'First slide',
'Second slide',
'Third slide',
Expand All @@ -18,9 +18,9 @@ export class AppComponent {
'Sixth slide'
];

private type: string = 'component';
public type: string = 'component';

private config: SwiperConfigInterface = {
public config: SwiperConfigInterface = {
scrollbar: null,
direction: 'horizontal',
slidesPerView: 1,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Angular wrapper library for Swiper",
"bugs": "https://github.com/zefoy/ngx-swiper-wrapper/issues",
"license": "MIT",
"version": "2.5.0",
"version": "2.5.1",
"main": "bundles/ngx-swiper-wrapper.umd.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
Expand Down

0 comments on commit b5ae42e

Please sign in to comment.