summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Schlosser <christophschlosser@users.noreply.github.com>2020-03-15 10:45:27 +0100
committerChristoph Schlosser <christoph@linux.com>2020-03-15 10:55:24 +0100
commit38d5349b0e2b1177f45adc6a800360c32a6f70d1 (patch)
tree1aa8e40ee51651e37964b5deb76377aea30b0485
parentf235fa5258f8f0d572249255de41a3fae26f2f19 (diff)
downloaddoxdocgen-38d5349b0e2b1177f45adc6a800360c32a6f70d1.tar.gz
Release 0.6.0 (#150)0.6.0
* Fix travis config as well
-rw-r--r--.travis.yml26
-rw-r--r--CHANGELOG.md16
-rw-r--r--package.json2
-rw-r--r--src/extension.ts4
4 files changed, 30 insertions, 18 deletions
diff --git a/.travis.yml b/.travis.yml
index b46a0b4..c738ad9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,28 +1,14 @@
-sudo: false
-
branches:
only:
- master
- /^\d\.\d\.\d$/
-os:
- - linux
- - osx
+os: osx
language: node_js
node_js:
- "6"
-matrix:
- include:
- - os: linux
- dist: trusty
- sudo: false
- - os: osx
- osx_image: xcode9.1
- allow_failures:
- - os: linux # Currently linux tests seem broken
-
stages:
- lint
- build
@@ -40,15 +26,25 @@ install:
- npm install
jobs:
+ allow_failures:
+ - os: linux
include:
+ - os: linux
+ dist: xenial
- stage: lint
script: tslint -c tslint.json 'src/**/*.ts'
+ os: linux
- stage: build
script: npm run vscode:prepublish
+ os: linux
+ - stage: test
+ script: npm run test
+ os: osx
- stage: release
script:
- npm install vsce
- vsce package
+ os: linux
deploy:
- provider: releases
api_key: $GITHUB_OAUTH_TOKEN
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c9cf2e3..f017bbb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,21 @@
# Change Log
+## [0.6.0]
+
+### Feature
+
+- Add support for multiline template #140 (#127)
+
+ Thanks to @eternalphane
+
+- Enable CUDA language support #148 (#128)
+
+ Thanks to @trxcllnt
+
+### Other
+
+- Update dev dependencies
+
## [0.5.2]
### Fix
diff --git a/package.json b/package.json
index 319ceed..7d0e13e 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "doxdocgen",
"displayName": "Doxygen Documentation Generator",
"description": "Let me generate Doxygen documentation from your source code for you.",
- "version": "0.5.2",
+ "version": "0.6.0",
"publisher": "cschlosser",
"engines": {
"vscode": "^1.37.0"
diff --git a/src/extension.ts b/src/extension.ts
index 55f7e46..91668a2 100644
--- a/src/extension.ts
+++ b/src/extension.ts
@@ -5,8 +5,8 @@ import * as vscode from "vscode";
import CodeParserController from "./CodeParserController";
enum Version {
- CURRENT = "0.5.2",
- PREVIOUS = "0.5.1",
+ CURRENT = "0.6.0",
+ PREVIOUS = "0.5.2",
KEY = "doxdocgen_version",
}