Skip to content

Commit

Permalink
chore(release): released 2.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zoomchan-cxj committed Apr 26, 2021
1 parent 0499d7b commit 53a6f4a
Show file tree
Hide file tree
Showing 26 changed files with 119 additions and 26 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,35 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.6.2](https://github.com/Tencent/Hippy/compare/2.6.1...2.6.2) (2021-04-26)


### Bug Fixes

* **android:** some image view default source display issues ([0dd696e](https://github.com/Tencent/Hippy/commit/0dd696e01234305a00f263ad83ccb4c3a7473ce1))
* **core:** fix jni dynamic register crash ([0d639b1](https://github.com/Tencent/Hippy/commit/0d639b18c4a8ca09bd4f26c47de5f30fff44a7bc))
* **hippy-vue:** fix registerElement elem name and comp name problem ([abec3bd](https://github.com/Tencent/Hippy/commit/abec3bdef337bf2b238fd7fef4159194a313abba))
* **ios:** fix a bug about touch handler ([d96dcf3](https://github.com/Tencent/Hippy/commit/d96dcf3fb803e4cb817420ecbae3e4bcf585899a))
* **ios:** fix resize mode center error ([0483a3f](https://github.com/Tencent/Hippy/commit/0483a3f1036a657f5f0ebda25a8a37c3d7c90a11))
* **ios:** fix wrap-reverse layout ([e5c2ab9](https://github.com/Tencent/Hippy/commit/e5c2ab9ea8ce7d77ea298db4a3360ac37c127eef))


### Features

* **android:** support use default source in image span ([218b4dd](https://github.com/Tencent/Hippy/commit/218b4dd0eac0125d1ea7a251aae31d85602efec6))
* **hippy-vue:** add txt/span/img/a/label/p touch event ([391bafd](https://github.com/Tencent/Hippy/commit/391bafd21f2a0fd0c0f8ec3c514fed8f08a2f531))
* **ios:** sdk will send error code if image load failure ([7b40ec6](https://github.com/Tencent/Hippy/commit/7b40ec6a80648b0ab9fb8162bfc2602a2cad3b87))


### Reverts

* Revert "feat(ios): add log handler" ([0499d7b](https://github.com/Tencent/Hippy/commit/0499d7bb5a96525c7632a6a11d2e4d951969c92e))
* Revert "fix(ios): add header search path config" ([b9b294d](https://github.com/Tencent/Hippy/commit/b9b294dee3cdaa04278d157bc4853d42414f419e))





## [2.6.1](https://github.com/Tencent/Hippy/compare/2.6.0...2.6.1) (2021-04-22)


Expand Down
2 changes: 1 addition & 1 deletion android/sdk/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ARCHIVES_BASE_NAME=android-sdk

#maven central sdk version
#1.0.0-SNAPSHOT
VERSION_NAME=2.6.1
VERSION_NAME=2.6.2
VERSION_CODE=1

#ABI
Expand Down
6 changes: 3 additions & 3 deletions examples/android-demo/res/vendor.android.js

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions examples/ios-demo/res/vendor.ios.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion hippy.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'hippy'
s.version = '2.6.1'
s.version = '2.6.2'
s.summary = 'hippy lib for ios'

# This description is used to generate tags and improve search results.
Expand Down
2 changes: 1 addition & 1 deletion ios/sdk/base/HippyBridge.mm
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
NSString *const HippyJavaScriptDidFailToLoadNotification = @"HippyJavaScriptDidFailToLoadNotification";
NSString *const HippyDidInitializeModuleNotification = @"HippyDidInitializeModuleNotification";
NSString *const HippyBusinessDidLoadNotification = @"HippyBusinessDidLoadNotification";
NSString *const _HippySDKVersion = @"2.6.1";
NSString *const _HippySDKVersion = @"2.6.2";

static NSMutableArray<Class> *HippyModuleClasses;
NSArray<Class> *HippyGetModuleClasses(void) {
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"packages": [
"packages/*"
],
"version": "2.6.1"
"version": "2.6.2"
}
8 changes: 8 additions & 0 deletions packages/hippy-debug-server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.6.2](https://github.com/Tencent/Hippy/tree/master/packages/hippy-debug-server/compare/2.6.1...2.6.2) (2021-04-26)

**Note:** Version bump only for package @hippy/debug-server





## [2.6.1](https://github.com/Tencent/Hippy/tree/master/packages/hippy-debug-server/compare/2.6.0...2.6.1) (2021-04-22)

**Note:** Version bump only for package @hippy/debug-server
Expand Down
2 changes: 1 addition & 1 deletion packages/hippy-debug-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hippy/debug-server",
"version": "2.6.1",
"version": "2.6.2",
"description": "Dev server for hippy-core.",
"repository": "https://github.com/Tencent/Hippy/tree/master/packages/hippy-debug-server",
"homepage": "http://hippyjs.org",
Expand Down
8 changes: 8 additions & 0 deletions packages/hippy-react-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.6.2](https://github.com/Tencent/Hippy/tree/master/packages/hippy-react-web/compare/2.6.1...2.6.2) (2021-04-26)

**Note:** Version bump only for package @hippy/react-web





## [2.6.1](https://github.com/Tencent/Hippy/tree/master/packages/hippy-react-web/compare/2.6.0...2.6.1) (2021-04-22)

**Note:** Version bump only for package @hippy/react-web
Expand Down
2 changes: 1 addition & 1 deletion packages/hippy-react-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/hippy-react-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hippy/react-web",
"version": "2.6.1",
"version": "2.6.2",
"description": "Web Adapter for Hippy React",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/hippy-react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.6.2](https://github.com/Tencent/Hippy/tree/master/packages/hippy-react/compare/2.6.1...2.6.2) (2021-04-26)

**Note:** Version bump only for package @hippy/react





## [2.6.1](https://github.com/Tencent/Hippy/tree/master/packages/hippy-react/compare/2.6.0...2.6.1) (2021-04-22)


Expand Down
2 changes: 1 addition & 1 deletion packages/hippy-react/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/hippy-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hippy/react",
"version": "2.6.1",
"version": "2.6.2",
"description": "Hippy react framework",
"main": "dist/index.js",
"homepage": "http://hippyjs.org",
Expand Down
8 changes: 8 additions & 0 deletions packages/hippy-vue-css-loader/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.6.2](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue-css-loader/compare/2.6.1...2.6.2) (2021-04-26)

**Note:** Version bump only for package @hippy/vue-css-loader





## [2.6.1](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue-css-loader/compare/2.6.0...2.6.1) (2021-04-22)


Expand Down
2 changes: 1 addition & 1 deletion packages/hippy-vue-css-loader/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/hippy-vue-css-loader/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hippy/vue-css-loader",
"version": "2.6.1",
"version": "2.6.2",
"description": "hippy-vue style loader module for webpack",
"main": "dist/index.js",
"homepage": "http://hippyjs.org",
Expand Down
8 changes: 8 additions & 0 deletions packages/hippy-vue-native-components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.6.2](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue-native-components/compare/2.6.1...2.6.2) (2021-04-26)

**Note:** Version bump only for package @hippy/vue-native-components





## [2.6.1](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue-native-components/compare/2.6.0...2.6.1) (2021-04-22)

**Note:** Version bump only for package @hippy/vue-native-components
Expand Down
2 changes: 1 addition & 1 deletion packages/hippy-vue-native-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hippy/vue-native-components",
"version": "2.6.1",
"version": "2.6.2",
"description": "Native components middleware for Hippy-Vue, the components only for native, can't compatible with web.",
"main": "dist/index.js",
"homepage": "http://hippyjs.org",
Expand Down
8 changes: 8 additions & 0 deletions packages/hippy-vue-router/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.6.2](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue-router/compare/2.6.1...2.6.2) (2021-04-26)

**Note:** Version bump only for package @hippy/vue-router





## [2.6.1](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue-router/compare/2.6.0...2.6.1) (2021-04-22)

**Note:** Version bump only for package @hippy/vue-router
Expand Down
2 changes: 1 addition & 1 deletion packages/hippy-vue-router/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/hippy-vue-router/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hippy/vue-router",
"version": "2.6.1",
"version": "2.6.2",
"description": "Official router for hippy-vue",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
16 changes: 16 additions & 0 deletions packages/hippy-vue/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.6.2](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue/compare/2.6.1...2.6.2) (2021-04-26)


### Bug Fixes

* **hippy-vue:** fix registerElement elem name and comp name problem ([abec3bd](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue/commit/abec3bdef337bf2b238fd7fef4159194a313abba))


### Features

* **hippy-vue:** add txt/span/img/a/label/p touch event ([391bafd](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue/commit/391bafd21f2a0fd0c0f8ec3c514fed8f08a2f531))





## [2.6.1](https://github.com/Tencent/Hippy/tree/master/packages/hippy-vue/compare/2.6.0...2.6.1) (2021-04-22)


Expand Down
2 changes: 1 addition & 1 deletion packages/hippy-vue/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/hippy-vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hippy/vue",
"version": "2.6.1",
"version": "2.6.2",
"description": "Vue binding for Hippy native framework",
"author": "XQ Kuang <[email protected]>",
"license": "Apache-2.0",
Expand Down

0 comments on commit 53a6f4a

Please sign in to comment.