Skip to content

Commit

Permalink
Merge branch 'v0.30.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmartel committed Dec 9, 2021
2 parents 47fe3b6 + 583190d commit b115a80
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [v0.30.3](https://github.com/ivmartel/dwv/releases/tag/v0.30.3) - 09/12/2021

### Fixed

- y.Group is not a constructor [#1055](https://github.com/ivmartel/dwv/issues/1055)

---

## [v0.30.2](https://github.com/ivmartel/dwv/releases/tag/v0.30.2) - 07/12/2021

### Added
Expand Down
6 changes: 3 additions & 3 deletions dist/dwv.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! dwv 0.30.2 2021-12-07 15:14:29 */
/*! dwv 0.30.3 2021-12-09 16:13:34 */
// Inspired from umdjs
// See https://github.com/umdjs/umd/blob/master/templates/returnExports.js
(function (root, factory) {
Expand All @@ -24,7 +24,7 @@
require('i18next-xhr-backend'),
require('i18next-browser-languagedetector'),
require('jszip'),
import('konva'),
require('konva/cmj'),
require('magic-wand-tool')
);
} else {
Expand Down Expand Up @@ -4398,7 +4398,7 @@ dwv.dicom = dwv.dicom || {};
* @returns {string} The version of the library.
*/
dwv.getVersion = function () {
return '0.30.2';
return '0.30.3';
};

/**
Expand Down
4 changes: 2 additions & 2 deletions dist/dwv.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dwv",
"version": "0.30.2",
"version": "0.30.3",
"description": "DICOM Web Viewer.",
"keywords": [
"DICOM",
Expand Down
2 changes: 1 addition & 1 deletion resources/module/intro.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
require('i18next-xhr-backend'),
require('i18next-browser-languagedetector'),
require('jszip'),
import('konva'),
require('konva/cmj'),
require('magic-wand-tool')
);
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/dicom/dicomParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dwv.dicom = dwv.dicom || {};
* @returns {string} The version of the library.
*/
dwv.getVersion = function () {
return '0.30.2';
return '0.30.3';
};

/**
Expand Down

0 comments on commit b115a80

Please sign in to comment.