Skip to content

Commit

Permalink
chore: bump version to 0.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
yume-chan committed May 2, 2022
1 parent 12f88c3 commit 4d01f25
Show file tree
Hide file tree
Showing 36 changed files with 168 additions and 110 deletions.
14 changes: 7 additions & 7 deletions apps/demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
"@fluentui/react-icons": "^2.0.166-rc.3",
"@fluentui/style-utilities": "^8.6.5",
"@griffel/react": "^1.0.3",
"@yume-chan/adb": "^0.0.14",
"@yume-chan/adb": "^0.0.15",
"@yume-chan/adb-backend-direct-sockets": "^0.0.9",
"@yume-chan/adb-backend-webusb": "^0.0.14",
"@yume-chan/adb-backend-webusb": "^0.0.15",
"@yume-chan/adb-backend-ws": "^0.0.9",
"@yume-chan/adb-credential-web": "^0.0.14",
"@yume-chan/android-bin": "^0.0.14",
"@yume-chan/adb-credential-web": "^0.0.15",
"@yume-chan/android-bin": "^0.0.15",
"@yume-chan/async": "^2.1.4",
"@yume-chan/event": "^0.0.14",
"@yume-chan/scrcpy": "^0.0.14",
"@yume-chan/struct": "^0.0.14",
"@yume-chan/event": "^0.0.15",
"@yume-chan/scrcpy": "^0.0.15",
"@yume-chan/struct": "^0.0.15",
"mobx": "^6.5.0",
"mobx-react-lite": "^3.3.0",
"next": "12.1.5",
Expand Down
4 changes: 2 additions & 2 deletions apps/demo/src/pages/reverse.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ reaction(() => GlobalState.device, async device => {
const ReverseTesterPage: NextPage = () => {
return (
<div>
{state.log.map(line => (
<div>{line}</div>
{state.log.map((line, index) => (
<div key={index}>{line}</div>
))}
</div>
);
Expand Down

This file was deleted.

10 changes: 0 additions & 10 deletions common/changes/@yume-chan/adb/master_2022-05-01-00-18.json

This file was deleted.

10 changes: 0 additions & 10 deletions common/changes/@yume-chan/adb/master_2022-05-01-10-36.json

This file was deleted.

10 changes: 0 additions & 10 deletions common/changes/@yume-chan/adb/master_2022-05-02-04-14.json

This file was deleted.

10 changes: 0 additions & 10 deletions common/changes/@yume-chan/adb/master_2022-05-02-04-15.json

This file was deleted.

10 changes: 0 additions & 10 deletions common/changes/@yume-chan/scrcpy/master_2022-05-01-04-15.json

This file was deleted.

10 changes: 0 additions & 10 deletions common/changes/@yume-chan/scrcpy/master_2022-05-01-10-36.json

This file was deleted.

2 changes: 1 addition & 1 deletion common/config/rush/version-policies.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
{
"definitionName": "lockStepVersion",
"policyName": "adb",
"version": "0.0.14",
"version": "0.0.15",
"nextBump": "patch"
}
]
2 changes: 1 addition & 1 deletion libraries/adb-backend-direct-sockets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@yume-chan/ts-package-builder": "^1.0.0"
},
"dependencies": {
"@yume-chan/adb": "^0.0.14",
"@yume-chan/adb": "^0.0.15",
"tslib": "^2.3.1"
}
}
12 changes: 12 additions & 0 deletions libraries/adb-backend-webusb/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
{
"name": "@yume-chan/adb-backend-webusb",
"entries": [
{
"version": "0.0.15",
"tag": "@yume-chan/adb-backend-webusb_v0.0.15",
"date": "Mon, 02 May 2022 04:18:01 GMT",
"comments": {
"none": [
{
"comment": "Improve connection lifecycle handling"
}
]
}
},
{
"version": "0.0.14",
"tag": "@yume-chan/adb-backend-webusb_v0.0.14",
Expand Down
9 changes: 8 additions & 1 deletion libraries/adb-backend-webusb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log - @yume-chan/adb-backend-webusb

This log was last generated on Sat, 30 Apr 2022 14:05:48 GMT and should not be manually modified.
This log was last generated on Mon, 02 May 2022 04:18:01 GMT and should not be manually modified.

## 0.0.15
Mon, 02 May 2022 04:18:01 GMT

### Updates

- Improve connection lifecycle handling

## 0.0.14
Sat, 30 Apr 2022 14:05:48 GMT
Expand Down
6 changes: 3 additions & 3 deletions libraries/adb-backend-webusb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yume-chan/adb-backend-webusb",
"version": "0.0.14",
"version": "0.0.15",
"description": "Backend for `@yume-chan/adb` using WebUSB API.",
"keywords": [
"webusb",
Expand Down Expand Up @@ -32,8 +32,8 @@
},
"dependencies": {
"@types/w3c-web-usb": "^1.0.4",
"@yume-chan/adb": "^0.0.14",
"@yume-chan/struct": "^0.0.14",
"@yume-chan/adb": "^0.0.15",
"@yume-chan/struct": "^0.0.15",
"tslib": "^2.3.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion libraries/adb-backend-ws/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@yume-chan/ts-package-builder": "^1.0.0"
},
"dependencies": {
"@yume-chan/adb": "^0.0.14",
"@yume-chan/adb": "^0.0.15",
"tslib": "^2.3.1"
}
}
6 changes: 6 additions & 0 deletions libraries/adb-credential-web/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"name": "@yume-chan/adb-credential-web",
"entries": [
{
"version": "0.0.15",
"tag": "@yume-chan/adb-credential-web_v0.0.15",
"date": "Mon, 02 May 2022 04:18:01 GMT",
"comments": {}
},
{
"version": "0.0.14",
"tag": "@yume-chan/adb-credential-web_v0.0.14",
Expand Down
7 changes: 6 additions & 1 deletion libraries/adb-credential-web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log - @yume-chan/adb-credential-web

This log was last generated on Sat, 30 Apr 2022 14:05:48 GMT and should not be manually modified.
This log was last generated on Mon, 02 May 2022 04:18:01 GMT and should not be manually modified.

## 0.0.15
Mon, 02 May 2022 04:18:01 GMT

_Version update only_

## 0.0.14
Sat, 30 Apr 2022 14:05:48 GMT
Expand Down
4 changes: 2 additions & 2 deletions libraries/adb-credential-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yume-chan/adb-credential-web",
"version": "0.0.14",
"version": "0.0.15",
"description": "Credential Store for `@yume-chan/adb` using Web LocalStorage API.",
"keywords": [
"adb"
Expand Down Expand Up @@ -33,7 +33,7 @@
"@yume-chan/ts-package-builder": "^1.0.0"
},
"dependencies": {
"@yume-chan/adb": "^0.0.14",
"@yume-chan/adb": "^0.0.15",
"tslib": "^2.3.1"
}
}
21 changes: 21 additions & 0 deletions libraries/adb/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
{
"name": "@yume-chan/adb",
"entries": [
{
"version": "0.0.15",
"tag": "@yume-chan/adb_v0.0.15",
"date": "Mon, 02 May 2022 04:18:01 GMT",
"comments": {
"none": [
{
"comment": "Add support for old protocol of `reverse:forward` command before Android 8"
},
{
"comment": "Improve connection lifecycle handling"
},
{
"comment": "Update `reverse.add` to accept any string local address"
},
{
"comment": "Fix an issue where `reverse` commands doesn't parse error message correctly"
}
]
}
},
{
"version": "0.0.14",
"tag": "@yume-chan/adb_v0.0.14",
Expand Down
12 changes: 11 additions & 1 deletion libraries/adb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Change Log - @yume-chan/adb

This log was last generated on Sat, 30 Apr 2022 14:05:48 GMT and should not be manually modified.
This log was last generated on Mon, 02 May 2022 04:18:01 GMT and should not be manually modified.

## 0.0.15
Mon, 02 May 2022 04:18:01 GMT

### Updates

- Add support for old protocol of `reverse:forward` command before Android 8
- Improve connection lifecycle handling
- Update `reverse.add` to accept any string local address
- Fix an issue where `reverse` commands doesn't parse error message correctly

## 0.0.14
Sat, 30 Apr 2022 14:05:48 GMT
Expand Down
8 changes: 4 additions & 4 deletions libraries/adb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yume-chan/adb",
"version": "0.0.14",
"version": "0.0.15",
"description": "TypeScript implementation of Android Debug Bridge (ADB) protocol.",
"keywords": [
"adb",
Expand Down Expand Up @@ -32,9 +32,9 @@
},
"dependencies": {
"@yume-chan/async": "^2.1.4",
"@yume-chan/dataview-bigint-polyfill": "^0.0.14",
"@yume-chan/event": "^0.0.14",
"@yume-chan/struct": "^0.0.14",
"@yume-chan/dataview-bigint-polyfill": "^0.0.15",
"@yume-chan/event": "^0.0.15",
"@yume-chan/struct": "^0.0.15",
"tslib": "^2.3.1",
"web-streams-polyfill": "^4.0.0-beta.2"
},
Expand Down
6 changes: 6 additions & 0 deletions libraries/android-bin/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"name": "@yume-chan/android-bin",
"entries": [
{
"version": "0.0.15",
"tag": "@yume-chan/android-bin_v0.0.15",
"date": "Mon, 02 May 2022 04:18:01 GMT",
"comments": {}
},
{
"version": "0.0.14",
"tag": "@yume-chan/android-bin_v0.0.14",
Expand Down
7 changes: 6 additions & 1 deletion libraries/android-bin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log - @yume-chan/android-bin

This log was last generated on Sat, 30 Apr 2022 14:05:48 GMT and should not be manually modified.
This log was last generated on Mon, 02 May 2022 04:18:01 GMT and should not be manually modified.

## 0.0.15
Mon, 02 May 2022 04:18:01 GMT

_Version update only_

## 0.0.14
Sat, 30 Apr 2022 14:05:48 GMT
Expand Down
6 changes: 3 additions & 3 deletions libraries/android-bin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yume-chan/android-bin",
"version": "0.0.14",
"version": "0.0.15",
"description": "Wrappers for Android built-in executables.",
"keywords": [
"adb",
Expand Down Expand Up @@ -34,8 +34,8 @@
"@yume-chan/ts-package-builder": "^1.0.0"
},
"dependencies": {
"@yume-chan/adb": "^0.0.14",
"@yume-chan/struct": "^0.0.14",
"@yume-chan/adb": "^0.0.15",
"@yume-chan/struct": "^0.0.15",
"tslib": "^2.3.1"
}
}
6 changes: 6 additions & 0 deletions libraries/dataview-bigint-polyfill/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"name": "@yume-chan/dataview-bigint-polyfill",
"entries": [
{
"version": "0.0.15",
"tag": "@yume-chan/dataview-bigint-polyfill_v0.0.15",
"date": "Mon, 02 May 2022 04:18:01 GMT",
"comments": {}
},
{
"version": "0.0.14",
"tag": "@yume-chan/dataview-bigint-polyfill_v0.0.14",
Expand Down
7 changes: 6 additions & 1 deletion libraries/dataview-bigint-polyfill/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log - @yume-chan/dataview-bigint-polyfill

This log was last generated on Sat, 30 Apr 2022 14:05:48 GMT and should not be manually modified.
This log was last generated on Mon, 02 May 2022 04:18:01 GMT and should not be manually modified.

## 0.0.15
Mon, 02 May 2022 04:18:01 GMT

_Version update only_

## 0.0.14
Sat, 30 Apr 2022 14:05:48 GMT
Expand Down
2 changes: 1 addition & 1 deletion libraries/dataview-bigint-polyfill/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yume-chan/dataview-bigint-polyfill",
"version": "0.0.14",
"version": "0.0.15",
"description": "Polyfill for `DataView#getBigInt64`, `DataView#getBigUint64`, `DataView#setBigInt64` and `DataView#setBigUint64`",
"keywords": [
"polyfill",
Expand Down
6 changes: 6 additions & 0 deletions libraries/event/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"name": "@yume-chan/event",
"entries": [
{
"version": "0.0.15",
"tag": "@yume-chan/event_v0.0.15",
"date": "Mon, 02 May 2022 04:18:01 GMT",
"comments": {}
},
{
"version": "0.0.14",
"tag": "@yume-chan/event_v0.0.14",
Expand Down
Loading

1 comment on commit 4d01f25

@vercel
Copy link

@vercel vercel bot commented on 4d01f25 May 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

ya-webadb – ./

ya-webadb-yume-chan.vercel.app
ya-webadb.vercel.app
ya-webadb-git-master-yume-chan.vercel.app

Please sign in to comment.