Skip to content

Commit

Permalink
post 1.0 release cleanup ([email protected]; [email protected])
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-polinsky committed May 17, 2023
1 parent e173e2c commit a8c20dc
Show file tree
Hide file tree
Showing 35 changed files with 138 additions and 237 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

6 changes: 3 additions & 3 deletions common/scripts/create_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ def createRelease(tag):

if packageJsonName == packageName:
packageBaseDirectory = os.path.dirname(fullPath)
changeLogFileName = "{0}/changelog.md".format(
changeLogFileName = "{0}/CHANGELOG.md".format(
packageBaseDirectory)
print("Found changelog.md: {0} matching: {1} at: {2}.".format(
print("Found CHANGELOG.md: {0} matching: {1} at: {2}".format(
packageJsonName, packageName, packageBaseDirectory))

break
Expand All @@ -82,7 +82,7 @@ def createRelease(tag):
print("Latest Changes:\n" + latest_changes)

cmd = ['gh', 'release', 'create', tag, '-n',
'"{0}"'.format(latest_changes), '-t', '"{0}"'.format(currentTag)]
'"{0}"'.format(latest_changes), '-t', '"{0}"'.format(tag)]

proc = subprocess.Popen(
" ".join(cmd), stdin=subprocess.PIPE, stdout=subprocess.PIPE, shell=True)
Expand Down
23 changes: 23 additions & 0 deletions packages/electron/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
{
"name": "@itwin/electron-authorization",
"entries": [
{
"version": "0.14.0",
"tag": "@itwin/electron-authorization_v0.14.0",
"date": "Wed, 17 May 2023 20:26:35 GMT",
"comments": {
"patch": [
{
"comment": "add core-common as direct dep (types); 1.0 release"
},
{
"comment": "logout now triggers endsession url in system browser; switch to shell.openExternal to ensure urls open on macso; "
}
],
"minor": [
{
"comment": "Add support for Electron 24."
},
{
"comment": "Add ability to initiate silentSignIn from ElectronRendererAuthorization"
}
]
}
},
{
"version": "0.13.0",
"tag": "@itwin/electron-authorization_v0.13.0",
Expand Down
16 changes: 15 additions & 1 deletion packages/electron/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
# Change Log - @itwin/electron-authorization

This log was last generated on Wed, 29 Mar 2023 09:49:21 GMT and should not be manually modified.
This log was last generated on Wed, 17 May 2023 20:26:35 GMT and should not be manually modified.

## 0.14.0
Wed, 17 May 2023 20:26:35 GMT

### Minor changes

- Add support for Electron 24.
- Add ability to initiate silentSignIn from ElectronRendererAuthorization

### Patches

- add core-common as direct dep (types); 1.0 release
- logout now triggers endsession url in system browser; switch to shell.openExternal to ensure urls open on macso;

## 0.13.0
Wed, 29 Mar 2023 09:49:21 GMT
Expand Down Expand Up @@ -135,3 +148,4 @@ Mon, 29 Nov 2021 15:30:19 GMT
### Minor changes

- Changed ElectronAuthorizationBackend name to ElectronAuthorizationMain and ElectronAppAuthorization to ElectronAuthorizationRenderer

2 changes: 1 addition & 1 deletion packages/electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itwin/electron-authorization",
"version": "0.13.0",
"version": "0.14.0",
"description": "Electron authorization client for iTwin platform",
"scripts": {
"build": "npm run -s build:cjs",
Expand Down
20 changes: 20 additions & 0 deletions packages/node-cli/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
{
"name": "@itwin/node-cli-authorization",
"entries": [
{
"version": "1.0.0",
"tag": "@itwin/node-cli-authorization_v1.0.0",
"date": "Wed, 17 May 2023 20:26:35 GMT",
"comments": {
"patch": [
{
"comment": "add core-common as direct dep (types)"
},
{
"comment": "Update peer deps to use >= for core-bentley"
}
],
"major": [
{
"comment": "Release v1.0"
}
]
}
},
{
"version": "0.11.0",
"tag": "@itwin/node-cli-authorization_v0.11.0",
Expand Down
14 changes: 13 additions & 1 deletion packages/node-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# Change Log - @itwin/node-cli-authorization

This log was last generated on Tue, 14 Mar 2023 20:05:10 GMT and should not be manually modified.
This log was last generated on Wed, 17 May 2023 20:26:35 GMT and should not be manually modified.

## 1.0.0
Wed, 17 May 2023 20:26:35 GMT

### Breaking changes

- Release v1.0

### Patches

- add core-common as direct dep (types)
- Update peer deps to use >= for core-bentley

## 0.11.0
Tue, 14 Mar 2023 20:05:10 GMT
Expand Down
Loading

0 comments on commit a8c20dc

Please sign in to comment.