Skip to content

Commit

Permalink
[bump] build-tools: 0.4.9000 => 0.5.0 (minor) (#12651)
Browse files Browse the repository at this point in the history
Bumped build-tools from 0.4.9000 to 0.5.0. This also switches
build-tools back to standard semver versions instead of our
"virtualPatch" format. That format was useful when developing the
build-tools themselves to handle various version styles, but that is no
longer the case.

Command used:

```shell
flub bump build-tools -t minor --no-install --scheme semver
```
  • Loading branch information
tylerbutler authored Oct 25, 2022
1 parent 1710c2b commit 20d2932
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion build-tools/lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"packages": [
"packages/**"
],
"version": "0.4.9000"
"version": "0.5.0"
}
8 changes: 4 additions & 4 deletions build-tools/packages/build-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fluid-tools/build-cli",
"version": "0.4.9000",
"version": "0.5.0",
"description": "Build tools for the Fluid Framework",
"homepage": "https://fluidframework.com",
"repository": {
Expand Down Expand Up @@ -70,9 +70,9 @@
"temp-directory": "nyc/.nyc_output"
},
"dependencies": {
"@fluid-tools/version-tools": "^0.4.9000",
"@fluidframework/build-tools": "^0.4.9000",
"@fluidframework/bundle-size-tools": "^0.4.9000",
"@fluid-tools/version-tools": "^0.5.0",
"@fluidframework/build-tools": "^0.5.0",
"@fluidframework/bundle-size-tools": "^0.5.0",
"@oclif/core": "^1.9.5",
"@oclif/plugin-commands": "^2.2.0",
"@oclif/plugin-help": "^5",
Expand Down
2 changes: 1 addition & 1 deletion build-tools/packages/build-cli/src/packageVersion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
*/

export const pkgName = "@fluid-tools/build-cli";
export const pkgVersion = "0.4.9000";
export const pkgVersion = "0.5.0";
6 changes: 3 additions & 3 deletions build-tools/packages/build-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fluidframework/build-tools",
"version": "0.4.9000",
"version": "0.5.0",
"description": "Fluid Build tools",
"homepage": "https://fluidframework.com",
"repository": {
Expand Down Expand Up @@ -52,8 +52,8 @@
"tsc": "tsc"
},
"dependencies": {
"@fluid-tools/version-tools": "^0.4.9000",
"@fluidframework/bundle-size-tools": "^0.4.9000",
"@fluid-tools/version-tools": "^0.5.0",
"@fluidframework/bundle-size-tools": "^0.5.0",
"async": "^3.2.0",
"chalk": "^2.4.2",
"commander": "^6.2.1",
Expand Down
2 changes: 1 addition & 1 deletion build-tools/packages/build-tools/src/packageVersion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
*/

export const pkgName = "@fluidframework/build-tools";
export const pkgVersion = "0.4.9000";
export const pkgVersion = "0.5.0";
2 changes: 1 addition & 1 deletion build-tools/packages/bundle-size-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fluidframework/bundle-size-tools",
"version": "0.4.9000",
"version": "0.5.0",
"description": "Utility for analyzing bundle size regressions",
"homepage": "https://fluidframework.com",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
*/

export const pkgName = "@fluidframework/bundle-size-tools";
export const pkgVersion = "0.4.9000";
export const pkgVersion = "0.5.0";
2 changes: 1 addition & 1 deletion build-tools/packages/version-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fluid-tools/version-tools",
"version": "0.4.9000",
"version": "0.5.0",
"description": "Versioning tools for Fluid Framework",
"homepage": "https://fluidframework.com",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion build-tools/packages/version-tools/src/packageVersion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
*/

export const pkgName = "@fluid-tools/version-tools";
export const pkgVersion = "0.4.9000";
export const pkgVersion = "0.5.0";

0 comments on commit 20d2932

Please sign in to comment.