Skip to content

Commit 8dfc236

Browse files
committed
ci: change to lockstep versioning across all packages for uppt
Signed-off-by: Tierney Cyren <hello@bnb.im>
1 parent fbbb08a commit 8dfc236

11 files changed

Lines changed: 41 additions & 10 deletions

File tree

.github/workflows/release.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,16 @@ jobs:
2525
- uses: danielroe/uppt/pr@7bcfb5397c37202ef882363f755423130419d28a # v0.5.5
2626
with:
2727
token: ${{ secrets.GITHUB_TOKEN }}
28+
packages: |
29+
aliases
30+
core
31+
fetchindex
32+
newest
33+
oldest
34+
opt
35+
parsefiles
36+
ranges
37+
static
2838
2939
# The release PR was merged: tag the squash commit, cut a GitHub release
3040
# from the PR body, and dispatch the publish workflow. The `release/v`
@@ -47,6 +57,16 @@ jobs:
4757
- uses: danielroe/uppt/release@7bcfb5397c37202ef882363f755423130419d28a # v0.5.5
4858
with:
4959
token: ${{ secrets.GITHUB_TOKEN }}
60+
packages: |
61+
aliases
62+
core
63+
fetchindex
64+
newest
65+
oldest
66+
opt
67+
parsefiles
68+
ranges
69+
static
5070
5171
# The chained dispatch from `release` lands here as a `workflow_dispatch`
5272
# event on a `vX.Y.Z` tag ref. The `pack` job installs deps, runs
@@ -65,6 +85,17 @@ jobs:
6585
steps:
6686
- id: pack
6787
uses: danielroe/uppt/pack@7bcfb5397c37202ef882363f755423130419d28a # v0.5.5
88+
with:
89+
packages: |
90+
aliases
91+
core
92+
fetchindex
93+
newest
94+
oldest
95+
opt
96+
parsefiles
97+
ranges
98+
static
6899
69100
# `publish` downloads the prebuilt tarball from the pack job's
70101
# artifact and stages it for publish.

aliases/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nodevu/aliases",
3-
"version": "0.0.2",
3+
"version": "1.0.0",
44
"description": "available aliases for sets of Node.js versions",
55
"main": "index.js",
66
"repository": {

core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nodevu/core",
3-
"version": "0.3.0",
3+
"version": "1.0.0",
44
"description": "nodevu core API: comprehensive node.js version tooling",
55
"main": "index.js",
66
"scripts": {

fetchindex/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nodevu/fetchindex",
3-
"version": "0.1.0",
3+
"version": "1.0.0",
44
"description": "A tool that fetches the /dist/index.json file from the Node.js website.",
55
"main": "index.js",
66
"files": ["index.js", "LICENSE"],

newest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nodevu/newest",
3-
"version": "0.1.0",
3+
"version": "1.0.0",
44
"description": "a module that returns the newest lts or security release of the release line passed.",
55
"main": "index.js",
66
"files": ["index.js", "LICENSE"],

oldest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nodevu/oldest",
3-
"version": "0.1.0",
3+
"version": "1.0.0",
44
"description": "a module that returns the oldest lts or security release of the release line passed.",
55
"main": "index.js",
66
"files": ["index.js", "LICENSE"],

opt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nodevu/opt",
3-
"version": "0.1.0",
3+
"version": "1.0.0",
44
"description": "internal options parser for @nodevu packages.",
55
"main": "index.js",
66
"files": ["index.js", "LICENSE"],

parsefiles/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nodevu/parsefiles",
3-
"version": "0.0.3",
3+
"version": "1.0.0",
44
"description": "parse the files identifiers from Node.js",
55
"main": "index.js",
66
"scripts": {

ranges/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nodevu/ranges",
3-
"version": "0.2.0",
3+
"version": "1.0.0",
44
"description": "support node's unofficial alias namespace",
55
"main": "index.js",
66
"files": ["index.js", "LICENSE"],

static/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nodevu/static",
3-
"version": "0.0.4",
3+
"version": "1.0.0",
44
"description": "static outputs from @nodevu/core",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)