Skip to content

Commit

Permalink
Set version to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
georgestagg committed Mar 21, 2023
1 parent 69ff055 commit 28834dd
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions NEWS.md
@@ -1,5 +1,7 @@
# webR (development version)

# webR 0.1.0

## Breaking changes
* Rename the properties of `WebROptions` so that they are all in camelCase, consistent with the rest of the webR TypeScript source. We have made the decision to release the above breaking change quickly while there are still a relatively low number of affected users.

Expand Down
2 changes: 1 addition & 1 deletion packages/webr/DESCRIPTION
@@ -1,7 +1,7 @@
Type: Package
Package: webr
Title: WebR Support Package
Version: 0.1.0
Version: 0.1.1
Authors@R: c(
person("George", "Stagg", , "george.stagg@posit.co", role = c("aut", "cre")),
person("Lionel", "Henry", , "lionel@posit.co", role = "aut"),
Expand Down
2 changes: 1 addition & 1 deletion src/docs/_quarto.yml
Expand Up @@ -18,7 +18,7 @@ website:
favicon: images/webR.png
page-navigation: true
sidebar:
title: "WebR 0.1.0 Documentation"
title: "WebR 0.1.1 Documentation"
logo: images/webR.png
contents:
- index.qmd
Expand Down
2 changes: 1 addition & 1 deletion src/docs/downloading.qmd
Expand Up @@ -40,7 +40,7 @@ import('https://webr.r-wasm.org/latest/webr.mjs').then(
);
```

Replace `latest` with a fixed version string, such as `v0.1.0`, if you would like to maintain a fixed version of webR.
Replace `latest` with a fixed version string, such as `v0.1.1`, if you would like to maintain a fixed version of webR.

## Download release package {#download-release}

Expand Down
2 changes: 1 addition & 1 deletion src/docs/examples.qmd
Expand Up @@ -179,7 +179,7 @@ After loading, the resulting web page should present an interactive R console si
</div>
</div>
<script type="module">
import { Console } from 'https://webr.r-wasm.org/v0.1.0/webr.mjs';
import { Console } from 'https://webr.r-wasm.org/v0.1.1/webr.mjs';
const webRConsole = new Console({
stdout: line => document.getElementById('out').append(line + '\n'),
stderr: line => document.getElementById('out').append(line + '\n'),
Expand Down
2 changes: 1 addition & 1 deletion src/docs/index.qmd
Expand Up @@ -39,7 +39,7 @@ Try a [demo of the webR REPL](https://webr.r-wasm.org/latest/) directly in your
theme: 'light default',
viewportMargin: Infinity,
});
import { WebR } from 'https://webr.r-wasm.org/v0.1.0/webr.mjs';
import { WebR } from 'https://webr.r-wasm.org/v0.1.1/webr.mjs';
const webR = new WebR();
await webR.init();
const shelter = await new webR.Shelter();
Expand Down
2 changes: 1 addition & 1 deletion src/docs/webr-serviceworker.js
@@ -1 +1 @@
importScripts('https://webr.r-wasm.org/v0.1.0/webr-serviceworker.js');
importScripts('https://webr.r-wasm.org/v0.1.1/webr-serviceworker.js');
2 changes: 1 addition & 1 deletion src/docs/webr-worker.js
@@ -1 +1 @@
importScripts('https://webr.r-wasm.org/v0.1.0/webr-worker.js');
importScripts('https://webr.r-wasm.org/v0.1.1/webr-worker.js');
2 changes: 1 addition & 1 deletion src/package.json
@@ -1,6 +1,6 @@
{
"name": "@r-wasm/webr",
"version": "0.1.0",
"version": "0.1.1",
"description": "The statistical programming langauge R compiled into WASM for use in a web browser and node.",
"keywords": [
"webR",
Expand Down

0 comments on commit 28834dd

Please sign in to comment.