Skip to content

Commit b736fa9

Browse files
committed
release
1 parent 4218bef commit b736fa9

9 files changed

Lines changed: 64 additions & 4 deletions

File tree

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -603,6 +603,27 @@ Versioning and release notes are managed with Changesets:
603603
- publish package
604604
- `pnpm changeset publish`
605605

606+
## Refresh npm token
607+
608+
- Get/create a new token from npm (or your registry UI).
609+
- Update your user .npmrc entry (Windows):
610+
611+
```
612+
notepad $HOME\.npmrc
613+
```
614+
615+
- Replace the auth line, e.g.:
616+
617+
```
618+
//registry.npmjs.org/:_authToken=YOUR_NEW_TOKEN
619+
```
620+
621+
If you use a project-level .npmrc, update/remove token there too.
622+
623+
Verify:
624+
625+
`npm whoami`
626+
606627
## npm adhoc publish
607628

608629
For manual one-off publish, set the version in that package’s `package.json` first, then publish.

apps/api/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @anywaydata/api
22

3+
## 2.3.0
4+
5+
### Minor Changes
6+
7+
- added counterstrings
8+
9+
### Patch Changes
10+
11+
- Updated dependencies
12+
- @anywaydata/core@1.3.0
13+
314
## 2.2.0
415

516
### Minor Changes

apps/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@anywaydata/api",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"type": "module",
55
"private": false,
66
"bin": {

apps/cli/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @anywaydata/cli
22

3+
## 0.3.0
4+
5+
### Minor Changes
6+
7+
- added counterstrings
8+
9+
### Patch Changes
10+
11+
- Updated dependencies
12+
- @anywaydata/core@1.3.0
13+
314
## 0.2.0
415

516
### Minor Changes

apps/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@anywaydata/cli",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"type": "module",
55
"private": false,
66
"bin": {

apps/mcp/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @anywaydata/mcp
22

3+
## 2.3.0
4+
5+
### Minor Changes
6+
7+
- added counterstrings
8+
9+
### Patch Changes
10+
11+
- Updated dependencies
12+
- @anywaydata/core@1.3.0
13+
314
## 2.2.0
415

516
### Minor Changes

apps/mcp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@anywaydata/mcp",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"type": "module",
55
"private": false,
66
"bin": {

packages/core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @anywaydata/core
22

3+
## 1.3.0
4+
5+
### Minor Changes
6+
7+
- added counterstrings
8+
39
## 1.2.0
410

511
### Minor Changes

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@anywaydata/core",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"type": "module",
55
"private": false,
66
"main": "./src/index.js",

0 commit comments

Comments
 (0)