Skip to content

Commit

Permalink
chore: bump version to 1.0.0 w/ changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
pimenovoleg committed Jun 7, 2019
1 parent 22c14a3 commit fe2fd86
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# 1.0.0 "Gauzy Hatred" (2019-06-07)


### Features

* **date-formatter:** update range dates formatter to show current year in some cases ([#137](https://github.com/positive-js/mosaic/issues/137)) ([22c14a3](https://github.com/positive-js/mosaic/commit/22c14a3))
* **form-field:** formFieldWithoutBorder does not work in storybook ([#134](https://github.com/positive-js/mosaic/issues/134)) ([fe3df0f](https://github.com/positive-js/mosaic/commit/fe3df0f))
* **link:** Новые стили в links ([#183685](https://github.com/positive-js/mosaic/issues/183685)) ([#127](https://github.com/positive-js/mosaic/issues/127)) ([3762afc](https://github.com/positive-js/mosaic/commit/3762afc))
* **select:** PgDn and PgUp in selects ([#135](https://github.com/positive-js/mosaic/issues/135)) ([4a384a7](https://github.com/positive-js/mosaic/commit/4a384a7)), closes [#184327](https://github.com/positive-js/mosaic/issues/184327)



# 1.0.0-beta.7 "Topo Restructuring" (2019-06-04)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mosaic",
"version": "1.0.0-beta.7",
"version": "1.0.0",
"description": "Components for Angular",
"homepage": "https://github.com/positive-js/mosaic",
"bugs": "https://github.com/positive-js/mosaic/issues",
Expand Down
2 changes: 1 addition & 1 deletion tools/release/version-name/publish-branches.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export function getAllowedPublishBranches(version: Version): string[] {
const versionType = getSemverVersionType(version);

if (versionType === 'major') {
return ['master'];
return [`${version.major}.${version.minor}.x`];
} else if (versionType === 'minor') {
// It's also possible that the caretaker wants to stage a minor release from a different
// branch than "master". This can happen if major changes have been merged into "master"
Expand Down

0 comments on commit fe2fd86

Please sign in to comment.