Skip to content

Commit

Permalink
Tagged 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ijlee2 committed Nov 11, 2024
1 parent ce56bc0 commit 429a414
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 18 deletions.
7 changes: 0 additions & 7 deletions .changeset/two-snakes-fly.md

This file was deleted.

11 changes: 5 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@

<summary>Publish packages (for admins)</summary>

1. Generate a [personal access token](https://github.com/settings/tokens/) in GitHub, with `repo` and `read:user` scopes enabled.
1. Generate a [personal access token](https://github.com/settings/tokens/) in GitHub, with default values for scopes (none selected).

1. Run the `release:changelog` script. This removes changesets, updates the package versions, and updates the `CHANGELOG`'s.
Expand All @@ -107,24 +107,23 @@
GITHUB_TOKEN=<YOUR_PERSONAL_ACCESS_TOKEN> pnpm release:changelog
```
1. The workspace root's version (e.g. `0.1.3`) is more of an identifier than a (semantic) version. We will use it to name the tag that will be published.

In the root `package.json`, update the version following the "highest-version" formula:
The `release:changelog` script also updated the workspace root's version (by following the highest version formula). We will use it to name the tag that will be published.

```
# Highest version formula
workspace root version = max(
max(all package versions),
workspace root version + 0.0.1,
);
```

1. [Create a tag](https://github.com/buschtoens/ember-render-helpers/releases/new) and provide release notes. The tag name should match the workspace root's version.
1. [Create a tag](https://github.com/buschtoens/ember-render-helpers/releases/new) and provide release notes. The tag name should match the package version, prefixed by the letter `v`. For example, `v1.0.0`.

1. Publish the packages.

```sh
# From the workspace root
pnpm release:publish
pnpm release:package
```

</details>
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "workspace-root",
"version": "1.0.3",
"version": "1.0.4",
"private": true,
"repository": "",
"license": "MIT",
Expand All @@ -11,7 +11,7 @@
"lint:fix": "pnpm --filter \"*\" lint:fix",
"prepare": "pnpm build",
"release:changelog": "changeset version; update-workspace-root-version",
"release:publish": "pnpm build && changeset publish",
"release:package": "pnpm build && changeset publish",
"start": "concurrently \"pnpm:start:*\" --restart-after 5000 --prefix-colors cyan,yellow",
"start:addon": "pnpm --filter ember-render-helpers start",
"start:test-app": "pnpm --filter test-app start",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# ember-codemod-ember-render-helpers-to-v1

## 1.0.3

### Patch Changes

- [#456](https://github.com/buschtoens/ember-render-helpers/pull/456) Updated package configurations ([@ijlee2](https://github.com/ijlee2))
- [#455](https://github.com/buschtoens/ember-render-helpers/pull/455) Updated dependencies ([@ijlee2](https://github.com/ijlee2))
- [#454](https://github.com/buschtoens/ember-render-helpers/pull/454) Updated pnpm to v9 ([@ijlee2](https://github.com/ijlee2))

## 1.0.2

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-codemod-ember-render-helpers-to-v1",
"version": "1.0.2",
"version": "1.0.3",
"description": "Rename helpers from ember-render-helpers",
"keywords": [
"codemod",
Expand Down
8 changes: 8 additions & 0 deletions packages/ember-render-helpers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# ember-render-helpers

## 1.0.3

### Patch Changes

- [#456](https://github.com/buschtoens/ember-render-helpers/pull/456) Updated package configurations ([@ijlee2](https://github.com/ijlee2))
- [#455](https://github.com/buschtoens/ember-render-helpers/pull/455) Updated dependencies ([@ijlee2](https://github.com/ijlee2))
- [#454](https://github.com/buschtoens/ember-render-helpers/pull/454) Updated pnpm to v9 ([@ijlee2](https://github.com/ijlee2))

## 1.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ember-render-helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-render-helpers",
"version": "1.0.2",
"version": "1.0.3",
"description": "Helpers that complement @ember/render-modifiers",
"keywords": [
"ember-addon",
Expand Down
8 changes: 8 additions & 0 deletions test-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# test-app

## 1.0.2

### Patch Changes

- [#456](https://github.com/buschtoens/ember-render-helpers/pull/456) Updated package configurations ([@ijlee2](https://github.com/ijlee2))
- [#455](https://github.com/buschtoens/ember-render-helpers/pull/455) Updated dependencies ([@ijlee2](https://github.com/ijlee2))
- [#454](https://github.com/buschtoens/ember-render-helpers/pull/454) Updated pnpm to v9 ([@ijlee2](https://github.com/ijlee2))

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion test-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "test-app",
"version": "1.0.1",
"version": "1.0.2",
"private": true,
"description": "Test app for ember-render-helpers",
"keywords": [
Expand Down

0 comments on commit 429a414

Please sign in to comment.