Skip to content

Commit

Permalink
Merge pull request #10 from sassoftware/v0.3.0-changes
Browse files Browse the repository at this point in the history
use v0.3.0 in readme and examples
  • Loading branch information
brmorr authored Nov 19, 2019
2 parents fd33819 + 4431508 commit 46930bc
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,9 @@
- Change authenticationType default from 'guest' to 'credentials'.
- Fix issues where report link context menu not always working as expected.
- Improved handling of report images and fixed an issue where report images would log unauthenticated users in as guest.

## 0.3.0 (November 19, 2019)

- Add support for SAS Visual Analytics 8.5
- Add support for `<sas-report-page>` custom element for embedding a report page.
- Additional bug fixes
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ npm install @sassoftware/va-report-components

Accessing the `va-report-components` library from a CDN is easy. It does not require installation or
hosting of the library code and assets. There are several public options for accessing NPM content through a CDN, such
as <a target="_blank" href="https://unpkg.com/">UNPKG</a> and <a target="_blank" href="https://www.jsdelivr.com/">jsDelivr</a>. Here is an example of loading the 0.2.* version of `va-report-components` from UNPKG
using an HTML `script` tag.
as <a target="_blank" href="https://unpkg.com/">UNPKG</a> and <a target="_blank" href="https://www.jsdelivr.com/">jsDelivr</a>. Here is an example of loading the 0.3.* version of `va-report-components` from UNPKG
using an HTML `script` tag. When used in production, the version should be pinned to the full `major.minor.patch` semantic version.

```html
<script async src="https://unpkg.com/@sassoftware/va-report-components@0.2/dist/umd/va-report-components.js"></script>
<script async src="https://unpkg.com/@sassoftware/va-report-components@0.3/dist/umd/va-report-components.js"></script>
```

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion examples/SASReportElement.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<html>
<head>
<script async src="https://unpkg.com/@sassoftware/va-report-components@0.2/dist/umd/va-report-components.js"></script>
<script async src="https://unpkg.com/@sassoftware/va-report-components@0.3/dist/umd/va-report-components.js"></script>
<style>
html {
background-color: #f0f0f0;
Expand Down
2 changes: 1 addition & 1 deletion examples/SASReportElementJS.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
background-color: #f0f0f0;
}
</style>
<script async src="https://unpkg.com/@sassoftware/va-report-components@0.2/dist/umd/va-report-components.js"></script>
<script async src="https://unpkg.com/@sassoftware/va-report-components@0.3/dist/umd/va-report-components.js"></script>
</head>
<body></body>
<script>
Expand Down
2 changes: 1 addition & 1 deletion examples/SASReportObjectElement.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<html>
<head>
<script async src="https://unpkg.com/@sassoftware/va-report-components@0.2/dist/umd/va-report-components.js"></script>
<script async src="https://unpkg.com/@sassoftware/va-report-components@0.3/dist/umd/va-report-components.js"></script>
<style>
html {
background-color: #f0f0f0;
Expand Down
2 changes: 1 addition & 1 deletion examples/connectToServer.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
background-color: #f0f0f0;
}
</style>
<script async src="https://unpkg.com/@sassoftware/va-report-components@0.2/dist/umd/va-report-components.js"></script>
<script async src="https://unpkg.com/@sassoftware/va-report-components@0.3/dist/umd/va-report-components.js"></script>
</head>
<body></body>
<script>
Expand Down
2 changes: 1 addition & 1 deletion examples/registerDataDrivenContent.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title>SAS Visual Analytics Custom Data Table</title>
<script
async
src="https://unpkg.com/@sassoftware/va-report-components@0.2/dist/umd/va-report-components.js"
src="https://unpkg.com/@sassoftware/va-report-components@0.3/dist/umd/va-report-components.js"
></script>
<style>
body {
Expand Down

0 comments on commit 46930bc

Please sign in to comment.