Skip to content

Commit

Permalink
chore: set upgrade version to 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonroberts committed May 15, 2018
1 parent 599cfb6 commit 3128c44
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion modules/effects/schematics-core/utility/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function updatePackage(name: string): Rule {
const suffix = match(firstChar, '^') || match(firstChar, '~');

// TODO: remove beta
pkg[category][packageName] = `${suffix}6.0.0-beta.3`;
pkg[category][packageName] = `${suffix}6.0.0`;
}
});

Expand Down
2 changes: 1 addition & 1 deletion modules/entity/schematics-core/utility/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function updatePackage(name: string): Rule {
const suffix = match(firstChar, '^') || match(firstChar, '~');

// TODO: remove beta
pkg[category][packageName] = `${suffix}6.0.0-beta.3`;
pkg[category][packageName] = `${suffix}6.0.0`;
}
});

Expand Down
2 changes: 1 addition & 1 deletion modules/router-store/schematics-core/utility/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function updatePackage(name: string): Rule {
const suffix = match(firstChar, '^') || match(firstChar, '~');

// TODO: remove beta
pkg[category][packageName] = `${suffix}6.0.0-beta.3`;
pkg[category][packageName] = `${suffix}6.0.0`;
}
});

Expand Down
2 changes: 1 addition & 1 deletion modules/schematics-core/testing/update.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const upgradeVersion = '6.0.0-beta.3';
export const upgradeVersion = '6.0.0';
export const versionPrefixes = ['~', '^', ''];
2 changes: 1 addition & 1 deletion modules/schematics-core/utility/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function updatePackage(name: string): Rule {
const suffix = match(firstChar, '^') || match(firstChar, '~');

// TODO: remove beta
pkg[category][packageName] = `${suffix}6.0.0-beta.3`;
pkg[category][packageName] = `${suffix}6.0.0`;
}
});

Expand Down
2 changes: 1 addition & 1 deletion modules/schematics/schematics-core/utility/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function updatePackage(name: string): Rule {
const suffix = match(firstChar, '^') || match(firstChar, '~');

// TODO: remove beta
pkg[category][packageName] = `${suffix}6.0.0-beta.3`;
pkg[category][packageName] = `${suffix}6.0.0`;
}
});

Expand Down
2 changes: 1 addition & 1 deletion modules/store-devtools/schematics-core/utility/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function updatePackage(name: string): Rule {
const suffix = match(firstChar, '^') || match(firstChar, '~');

// TODO: remove beta
pkg[category][packageName] = `${suffix}6.0.0-beta.3`;
pkg[category][packageName] = `${suffix}6.0.0`;
}
});

Expand Down
2 changes: 1 addition & 1 deletion modules/store/schematics-core/utility/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function updatePackage(name: string): Rule {
const suffix = match(firstChar, '^') || match(firstChar, '~');

// TODO: remove beta
pkg[category][packageName] = `${suffix}6.0.0-beta.3`;
pkg[category][packageName] = `${suffix}6.0.0`;
}
});

Expand Down

0 comments on commit 3128c44

Please sign in to comment.