Skip to content

Commit 1d03844

Browse files
chore: release v1.1.4 (#15)
Co-authored-by: Haroen Viaene <[email protected]>
1 parent 7fc9047 commit 1d03844

File tree

10 files changed

+27
-17
lines changed

10 files changed

+27
-17
lines changed

Diff for: CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## [1.1.4](https://github.com/algolia/ui-components/compare/v1.1.3...v1.1.4) (2022-10-10)
2+
3+
4+
### Bug Fixes
5+
6+
* **babel:** remove jsx pragma comment in output ([#14](https://github.com/algolia/ui-components/issues/14)) ([7fc9047](https://github.com/algolia/ui-components/commit/7fc90477b710755be00b92f9cf85e7aa0be28c1b))
7+
* **shared:** make usable when there's no preact or react ([#13](https://github.com/algolia/ui-components/issues/13)) ([9bcee85](https://github.com/algolia/ui-components/commit/9bcee850f0f7eadc074772513a55642962356ed5))
8+
9+
10+
111
## [1.1.3](https://github.com/algolia/ui-components/compare/v1.1.2...v1.1.3) (2022-07-26)
212

313

Diff for: examples/demo/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "@algolia/horizontal-slider-react-example",
33
"description": "Algolia UI Components Horizontal Slider for React example",
4-
"version": "1.1.3",
4+
"version": "1.1.4",
55
"private": true,
66
"license": "MIT",
77
"scripts": {
88
"build": "parcel build index.html",
99
"start": "parcel index.html"
1010
},
1111
"dependencies": {
12-
"@algolia/ui-components-horizontal-slider-react": "1.1.3",
13-
"@algolia/ui-components-horizontal-slider-theme": "1.1.3",
12+
"@algolia/ui-components-horizontal-slider-react": "1.1.4",
13+
"@algolia/ui-components-horizontal-slider-theme": "1.1.4",
1414
"react": "17.0.2",
1515
"react-dom": "17.0.2"
1616
},

Diff for: examples/js-demo/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "@algolia/horizontal-slider-js-example",
33
"description": "Algolia UI Components Horizontal Slider for Vanilla JavaScript example",
4-
"version": "1.1.3",
4+
"version": "1.1.4",
55
"private": true,
66
"license": "MIT",
77
"scripts": {
88
"build": "parcel build index.html",
99
"start": "parcel index.html"
1010
},
1111
"dependencies": {
12-
"@algolia/ui-components-horizontal-slider-js": "1.1.3",
13-
"@algolia/ui-components-horizontal-slider-theme": "1.1.3",
12+
"@algolia/ui-components-horizontal-slider-js": "1.1.4",
13+
"@algolia/ui-components-horizontal-slider-theme": "1.1.4",
1414
"@babel/runtime": "7.14.5",
1515
"preact": "10.5.13"
1616
},

Diff for: lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"packages": ["packages/*", "examples/*"],
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"npmClient": "yarn"
55
}

Diff for: packages/highlight-vdom/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/ui-components-highlight-vdom",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"license": "MIT",
55
"homepage": "https://github.com/algolia/ui-components",
66
"repository": "algolia/ui-components",
@@ -25,7 +25,7 @@
2525
"prepare": "yarn build:esm && yarn build:types"
2626
},
2727
"dependencies": {
28-
"@algolia/ui-components-shared": "1.1.3",
28+
"@algolia/ui-components-shared": "1.1.4",
2929
"@babel/runtime": "^7.0.0"
3030
}
3131
}

Diff for: packages/horizontal-slider-js/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@algolia/ui-components-horizontal-slider-js",
33
"description": "Horizontal slider UI component.",
4-
"version": "1.1.3",
4+
"version": "1.1.4",
55
"license": "MIT",
66
"homepage": "https://github.com/algolia/ui-components",
77
"repository": "algolia/ui-components",
@@ -29,7 +29,7 @@
2929
"prepare": "yarn build:esm && yarn build:types"
3030
},
3131
"dependencies": {
32-
"@algolia/ui-components-horizontal-slider-vdom": "1.1.3",
32+
"@algolia/ui-components-horizontal-slider-vdom": "1.1.4",
3333
"@babel/runtime": "^7.0.0",
3434
"preact": "^10.0.0"
3535
}

Diff for: packages/horizontal-slider-react/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/ui-components-horizontal-slider-react",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"license": "MIT",
55
"homepage": "https://github.com/algolia/ui-components",
66
"repository": "algolia/ui-components",
@@ -28,7 +28,7 @@
2828
"prepare": "yarn build:esm && yarn build:types"
2929
},
3030
"dependencies": {
31-
"@algolia/ui-components-horizontal-slider-vdom": "1.1.3",
31+
"@algolia/ui-components-horizontal-slider-vdom": "1.1.4",
3232
"@babel/runtime": "^7.0.0"
3333
},
3434
"peerDependencies": {

Diff for: packages/horizontal-slider-theme/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/ui-components-horizontal-slider-theme",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"license": "MIT",
55
"homepage": "https://github.com/algolia/ui-components",
66
"repository": "algolia/ui-components",

Diff for: packages/horizontal-slider-vdom/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/ui-components-horizontal-slider-vdom",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"license": "MIT",
55
"homepage": "https://github.com/algolia/ui-components",
66
"repository": "algolia/ui-components",
@@ -28,7 +28,7 @@
2828
"prepare": "yarn build:esm && yarn build:types"
2929
},
3030
"dependencies": {
31-
"@algolia/ui-components-shared": "1.1.3",
31+
"@algolia/ui-components-shared": "1.1.4",
3232
"@babel/runtime": "^7.0.0"
3333
}
3434
}

Diff for: packages/shared/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/ui-components-shared",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"license": "MIT",
55
"homepage": "https://github.com/algolia/ui-components",
66
"repository": "algolia/ui-components",

0 commit comments

Comments
 (0)