Skip to content
This repository was archived by the owner on Nov 30, 2021. It is now read-only.

Commit a1e756c

Browse files
author
Anita Steiner
authored
Merge pull request #207 from phovea/release-7.0.0
Release 7.0.0
2 parents 09a16d8 + 0ebe3a6 commit a1e756c

File tree

7 files changed

+11
-8
lines changed

7 files changed

+11
-8
lines changed

.circleci/config.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ jobs:
5050
- run:
5151
name: Authentication
5252
command: |
53-
echo -e "registry=https://$NPM_REPOSITORY" >> ~/phovea/.npmrc
54-
echo -e "//$NPM_REPOSITORY:authToken=$NPM_TOKEN" >> ~/phovea/.npmrc
53+
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
5554
- run:
5655
name: Publish package
5756
command: npm publish
@@ -90,4 +89,4 @@ workflows:
9089
branches:
9190
ignore: /.*/
9291
tags:
93-
only: /^v.*/
92+
only: /^v.*/

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @thinkh
1+
* @phovea/core @phovea/datavisyn-core

dist/base/ajax.d.ts

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/base/ajax.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/base/ajax.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "phovea_core",
33
"description": "Phovea Core including plugin registry, data definition (+ common types: tables, matrix, vector, stratification), ajax, selections",
4-
"version": "6.0.0",
4+
"version": "7.0.0",
55
"author": {
66
"name": "The Caleydo Team",
77
"email": "contact@caleydo.org",

src/base/ajax.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {GlobalEventHandler} from './event';
1111

1212

1313

14-
class AjaxError extends Error {
14+
export class AjaxError extends Error {
1515
constructor(public readonly response: Response, message?: string) {
1616
super(message ? message : response.statusText);
1717
// Set the prototype explicitly. needed for Typescript 2.1

0 commit comments

Comments
 (0)