Skip to content

Commit

Permalink
Release 0.6.0 (#150)
Browse files Browse the repository at this point in the history
* Fix travis config as well
  • Loading branch information
Christoph Schlosser authored and cschlosser committed Mar 15, 2020
1 parent f235fa5 commit 38d5349
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 18 deletions.
26 changes: 11 additions & 15 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
}

Expand Down

0 comments on commit 38d5349

Please sign in to comment.