Skip to content

Commit

Permalink
Bump to 3.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
calebporzio committed Apr 20, 2022
1 parent a594924 commit 7501305
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/alpinejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alpinejs",
"version": "3.10.1",
"version": "3.10.2",
"description": "The rugged, minimal JavaScript framework",
"author": "Caleb Porzio",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/collapse/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alpinejs/collapse",
"version": "3.10.1",
"version": "3.10.2",
"description": "Collapse and expand elements with robust animations",
"author": "Caleb Porzio",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alpinejs/docs",
"version": "3.10.1-revision.1",
"version": "3.10.2-revision.1",
"description": "The documentation for Alpine",
"author": "Caleb Porzio",
"license": "MIT"
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/src/en/essentials/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ This is by far the simplest way to get started with Alpine. Include the followin
Notice the `@3.x.x` in the provided CDN link. This will pull the latest version of Alpine version 3. For stability in production, it's recommended that you hardcode the latest version in the CDN link.

```alpine
<script defer src="https://unpkg.com/alpinejs@3.10.1/dist/cdn.min.js"></script>
<script defer src="https://unpkg.com/alpinejs@3.10.2/dist/cdn.min.js"></script>
```

That's it! Alpine is now available for use inside your page.
Expand Down
2 changes: 1 addition & 1 deletion packages/focus/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alpinejs/focus",
"version": "3.10.1",
"version": "3.10.2",
"description": "Manage focus within a page",
"author": "Caleb Porzio",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/intersect/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alpinejs/intersect",
"version": "3.10.1",
"version": "3.10.2",
"description": "Trigger JavaScript when an element enters the viewport",
"author": "Caleb Porzio",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/mask/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alpinejs/mask",
"version": "3.10.1",
"version": "3.10.2",
"description": "An Alpine plugin for input masking",
"author": "Caleb Porzio",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/morph/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alpinejs/morph",
"version": "3.10.1",
"version": "3.10.2",
"description": "Diff and patch a block of HTML on a page with an HTML template",
"author": "Caleb Porzio",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/persist/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alpinejs/persist",
"version": "3.10.1",
"version": "3.10.2",
"description": "Persist Alpine data across page loads",
"author": "Caleb Porzio",
"license": "MIT",
Expand Down

2 comments on commit 7501305

@qichunren
Copy link

Choose a reason for hiding this comment

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

Within cdn url https://unpkg.com/alpinejs@3.10.2/dist/cdn.min.js, code Alpine.version return 3.10.0, not equal to 3.10.2, maybe something wrong?

@ernstki
Copy link

Choose a reason for hiding this comment

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

This got me, too. Alpine.version in the console returns 3.10.0, even though my package.json shows that I have 3.10.2 installed.

The dist directory seems to still have the old version, or at least the version: hasn't been updated accordingly.

$ cd node_modules/alpinejs

$ ag -u "3\.10\.[0-9]"
dist/module.cjs.js
2642:  version: "3.10.0",

dist/cdn.min.js
5:[…]version:"3.10.0"[…]

dist/cdn.js
1426:    version: "3.10.0",

dist/module.esm.js
1425:  version: "3.10.0",

package.json
3:    "version": "3.10.2",

Please sign in to comment.