Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Commit

Permalink
Bump to version 1.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bastiaan van den Berg committed Nov 11, 2018
1 parent a1e7950 commit 988c62b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "ng-select-demo",
"version": "1.0.0",
"version": "1.0.1",
"license": "MIT",
"scripts": {
"test-lib": "ng test ng-select",
"lint-lib": "ng lint ng-select",
"build-lib": "ng build ng-select",

"serve-demo": "ng serve",
"build-demo": "ng build ng-select-demo",
"build-demo-prod": "ng build ng-select-demo --prod --base-href /ng-select/ --deploy-url /ng-select/",
"build-demo-prod": "ng build ng-select-demo --prod --base-href /ng-select/ --deploy-url /ng-select/",

"e2e": "ng e2e"
},
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion projects/ng-select/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-select",
"version": "1.0.0",
"version": "1.0.1",
"description": "Select component for angular.",
"repository": "git@github.com:basvandenberg/ng-select.git",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/home.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {OptionService} from '../services/option.service';
})
export class Home {

version: string = '1.0.0';
version: string = '1.0.1';

countries: Array<IOption> = this.optionService.getCountries();
singleSelectValue: string = 'NL';
Expand Down

0 comments on commit 988c62b

Please sign in to comment.