Skip to content

Commit

Permalink
Fix for #81
Browse files Browse the repository at this point in the history
  • Loading branch information
estruyf committed Jul 11, 2018
1 parent 0775549 commit 7725c27
Show file tree
Hide file tree
Showing 32 changed files with 875 additions and 370 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.JSON
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"versions": [
{
"version": "1.5.`",
"version": "1.6.0`",
"changes": {
"new": [],
"enhancements": [],
"fixes": [
"Fix issue where Application Insights is not defined [#81](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/81)"
"New telemetry approach which allows you to use Application Insights [#81](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/81)"
]
},
"contributions": ["Asish Padhy", "Alex Terentiev"]
"contributions": []
},
{
"version": "1.5.0",
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Releases

## 1.5.`
## 1.6.0`

**Fixes**

- Fix issue where Application Insights is not defined [#81](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/81)
- New telemetry approach which allows you to use Application Insights [#81](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/81)

## 1.5.0

Expand Down
4 changes: 2 additions & 2 deletions docs/documentation/docs/about/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Releases

## 1.5.`
## 1.6.0`

**Fixes**

- Fix issue where Application Insights is not defined [#81](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/81)
- New telemetry approach which allows you to use Application Insights [#81](https://github.com/SharePoint/sp-dev-fx-controls-react/issues/81)

## 1.5.0

Expand Down
4 changes: 1 addition & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const fs = require('fs');
// Update the version number in the version.ts file
gulp.task('versionUpdater', (done) => {
const pkgContents = require('./package.json');
const filePath = './src/common/appInsights/version.ts';
const filePath = './src/common/telemetry/version.ts';
const fileContents = `export const version: string = "{versionPlaceholder}";`;
const newContents = fileContents.replace("{versionPlaceholder}", pkgContents.version);
console.log(`Updating version number to: ${pkgContents.version}`);
Expand All @@ -21,5 +21,3 @@ const karmaTask = build.karma;
if (karmaTask) {
karmaTask.taskConfig.configPath = './config/karma.config.js';
}


Loading

0 comments on commit 7725c27

Please sign in to comment.