Skip to content
This repository has been archived by the owner on Jul 22, 2019. It is now read-only.

Commit

Permalink
Merge pull request #354 from HvyIndustries/release/0.3.8
Browse files Browse the repository at this point in the history
Release/0.3.8
  • Loading branch information
nevadascout committed Jul 21, 2017
2 parents bffc87b + 7257f91 commit 8f4e9d4
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 6 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ You can also set `php.suggest.basic` to `false` to disable VS Code's built-in ph
---

# What's new in v0.3.7 (latest release)
- Fix issue with including file on Linux

# What's new in v0.3.7
- Disabled bug report link to avoid misleading users into thinking there is a bug
- Upgraded php-parser to 2.0.6 to fix some crashes and freezing
- Added a special case for suggesting php opening tags (`<?php`)
Expand Down
5 changes: 4 additions & 1 deletion client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# v0.3.7 (latest release)
# v0.3.8 (latest release)
- Fix issue with including file on Linux

# v0.3.7
- Disabled bug report link to avoid misleading users into thinking there is a bug
- Upgraded php-parser to 2.0.6 to fix some crashes and freezing
- Added a special case for suggesting php opening tags (`<?php`)
Expand Down
3 changes: 3 additions & 0 deletions client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ You can also set `php.suggest.basic` to `false` to disable VS Code's built-in ph
---

# What's new in v0.3.7 (latest release)
- Fix issue with including file on Linux

# What's new in v0.3.7
- Disabled bug report link to avoid misleading users into thinking there is a bug
- Upgraded php-parser to 2.0.6 to fix some crashes and freezing
- Added a special case for suggesting php opening tags (`<?php`)
Expand Down
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"icon": "images/php-256.png",
"license": "MIT",
"version": "0.3.7",
"version": "0.3.8",
"publisher": "HvyIndustries",
"engines": {
"vscode": "^1.8.0"
Expand Down
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "crane-lang-server",
"description": "The language server for Crane",
"version": "1.1.6",
"version": "1.1.7",
"author": "HVY Industries",
"license": "MIT",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion server/src/hvy/treeBuilderV2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import {
NamespaceNode,
NamespacePart
} from './nodes';
import { Namespaces } from "../util/Namespaces";
import { Namespaces } from "../util/namespaces";

export class TreeBuilderV2
{
Expand Down
2 changes: 1 addition & 1 deletion server/src/providers/definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import { TextDocumentPositionParams, Location, Range } from 'vscode-languageserver';
import { FileNode, BaseNode } from "../hvy/nodes";
import { Namespaces } from "../util/Namespaces";
import { Namespaces } from "../util/namespaces";
import { Files } from "../util/Files";

const fs = require('fs');
Expand Down
2 changes: 1 addition & 1 deletion server/src/suggestionBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
MethodNode, NamespaceNode, NamespacePart
} from "./hvy/nodes";
import { Files } from "./util/Files";
import { Namespaces } from "./util/Namespaces";
import { Namespaces } from "./util/namespaces";
import { Debug } from "./util/Debug";

const fs = require('fs');
Expand Down
File renamed without changes.

0 comments on commit 8f4e9d4

Please sign in to comment.