Skip to content

Commit

Permalink
Bump version to 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kateinoigakukun committed Nov 15, 2023
1 parent 7066877 commit 7da79a9
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Create and save `index.html` page with the following contents:

```html
<html>
<script src="https://cdn.jsdelivr.net/npm/ruby-3_2-wasm-wasi@2.1.0/dist/browser.script.iife.js"></script>
<script src="https://cdn.jsdelivr.net/npm/ruby-3_2-wasm-wasi@2.2.0/dist/browser.script.iife.js"></script>
<script type="text/ruby">
puts "Hello, world!"
</script>
Expand Down
8 changes: 4 additions & 4 deletions 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/npm-packages/ruby-3_2-wasm-wasi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ $ npm install --save ruby-3_2-wasm-wasi@latest
# or if you want the nightly snapshot
$ npm install --save ruby-3_2-wasm-wasi@next
# or you can specify the exact snapshot version
$ npm install --save ruby-3_2-wasm-wasi@2.1.0-2023-07-28-a
$ npm install --save ruby-3_2-wasm-wasi@2.2.0-2023-11-15-a
```

## Quick Start (for Node.js)
Expand Down
2 changes: 1 addition & 1 deletion packages/npm-packages/ruby-3_2-wasm-wasi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ruby-3_2-wasm-wasi",
"version": "2.1.0",
"version": "2.2.0",
"description": "Ruby 3.2 built on WASI",
"main": "./dist/index.cjs.js",
"umd:main": "./dist/index.umd.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/npm-packages/ruby-head-wasm-emscripten/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ $ npm install --save ruby-head-wasm-emscripten@latest
# or if you want the nightly snapshot
$ npm install --save ruby-head-wasm-emscripten@next
# or you can specify the exact snapshot version
$ npm install --save ruby-head-wasm-emscripten@2.1.0-2023-07-28-a
$ npm install --save ruby-head-wasm-emscripten@2.2.0-2023-11-15-a
```

## Quick Start
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ruby-head-wasm-emscripten",
"version": "2.1.0",
"version": "2.2.0",
"description": "Ruby head built on Emscripten",
"type": "commonjs",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/npm-packages/ruby-head-wasm-wasi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ $ npm install --save ruby-head-wasm-wasi@latest
# or if you want the nightly snapshot
$ npm install --save ruby-head-wasm-wasi@next
# or you can specify the exact snapshot version
$ npm install --save ruby-head-wasm-wasi@2.1.0-2023-07-28-a
$ npm install --save ruby-head-wasm-wasi@2.2.0-2023-11-15-a
```

## Quick Start (for Node.js)
Expand Down
2 changes: 1 addition & 1 deletion packages/npm-packages/ruby-head-wasm-wasi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ruby-head-wasm-wasi",
"version": "2.1.0",
"version": "2.2.0",
"description": "Ruby head built on WASI",
"main": "./dist/index.cjs.js",
"umd:main": "./dist/index.umd.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/npm-packages/ruby-wasm-wasi/example/hello.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<script src="https://cdn.jsdelivr.net/npm/ruby-head-wasm-wasi@2.1.0/dist/browser.script.iife.js"></script>
<script src="https://cdn.jsdelivr.net/npm/ruby-head-wasm-wasi@2.2.0/dist/browser.script.iife.js"></script>
<script type="text/ruby">
puts "Hello, world!"
</script>
Expand Down
2 changes: 1 addition & 1 deletion packages/npm-packages/ruby-wasm-wasi/example/lucky.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<script src="https://cdn.jsdelivr.net/npm/ruby-head-wasm-wasi@2.1.0/dist/browser.script.iife.js"></script>
<script src="https://cdn.jsdelivr.net/npm/ruby-head-wasm-wasi@2.2.0/dist/browser.script.iife.js"></script>
<button id="draw">Draw Omikuji</button>
<div id="result"></div>
<script type="text/ruby">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<html>
<script src="https://cdn.jsdelivr.net/npm/ruby-head-wasm-wasi@2.1.0/dist/browser.script.iife.js"></script>
<script src="https://cdn.jsdelivr.net/npm/ruby-head-wasm-wasi@2.2.0/dist/browser.script.iife.js"></script>
<script type="text/ruby" src="hello.rb"></script>
</html>
2 changes: 1 addition & 1 deletion packages/npm-packages/ruby-wasm-wasi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ruby/wasm-wasi",
"version": "2.1.0",
"version": "2.2.0",
"description": "WebAssembly port of CRuby with WASI",
"main": "./dist/index.cjs.js",
"umd:main": "./dist/index.umd.js",
Expand Down

0 comments on commit 7da79a9

Please sign in to comment.