Skip to content

Commit 25cf237

Browse files
authored
Merge pull request #20 from textX/release/v0.1.0
Release v0.1.0
2 parents acbc093 + edeeb62 commit 25cf237

File tree

6 files changed

+13
-10
lines changed

6 files changed

+13
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning][semver].
77

88
## [Unreleased]
99

10+
## [0.1.0] (released 10/22/2019)
11+
1012
### Added
1113

1214
- Implement a mechanism to install/uninstall textX language project ([#18])
@@ -20,4 +22,5 @@ and this project adheres to [Semantic Versioning][semver].
2022
[keepachangelog]: https://keepachangelog.com/en/1.0.0/
2123
[semver]: https://semver.org/spec/v2.0.0.html
2224

23-
[Unreleased]: https://github.com/textX/textX-LS/compare/1f9a72a73cf69411587644d2715f2e6adf79e0ea...HEAD
25+
[Unreleased]: https://github.com/textX/textX-LS/compare/v0.1.0...HEAD
26+
[0.1.0]: https://github.com/textX/textX-LS/compare/1f9a72a73cf69411587644d2715f2e6adf79e0ea...v0.1.0

client/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,25 @@ There are two options for _installing_ a textX language project:
2424

2525
Install in an editable mode| Install from a wheel
2626
:-------------------------:|:-------------------------:
27-
<img src="https://github.com/textX/textX-LS/blob/master/client/media/install-project-editable.png" width="350" height="500" /> | <img src="https://github.com/textX/textX-LS/blob/master/client/media/install-project-wheel.png" width="400" height="500" />
27+
<img src="https://raw.githubusercontent.com/textX/textX-LS/master/client/media/install-project-editable.png" width="350" height="500" /> | <img src="https://raw.githubusercontent.com/textX/textX-LS/master/client/media/install-project-wheel.png" width="400" height="500" />
2828

2929
Project could be uninstalled either from a context menu or by clicking on a _recycle bin_ icon (shows on hover), after which confirmation dialog will be shown.
3030

3131
> **NOTE**: If the VS Code extension for a language is previously been activated (used), VS Code window will be restarted.
3232
33-
<img src="https://github.com/textX/textX-LS/blob/master/client/media/uninstall-project.png"/>
33+
<img src="https://raw.githubusercontent.com/textX/textX-LS/master/client/media/uninstall-project.png"/>
3434

3535
### Languages / Generators Preview
3636

3737
Registered textX languages and generators are listed in _textX view_.
3838

39-
<img src="https://github.com/textX/textX-LS/blob/master/client/media/textX-view.png" width="250" height="600" />
39+
<img src="https://raw.githubusercontent.com/textX/textX-LS/master/client/media/textX-view.png" width="250" height="600" />
4040

4141
### Model / Meta-model Validation
4242

4343
Metamodel validation| Model validation
4444
:-------------------------:|:-------------------------:
45-
<img src="https://github.com/textX/textX-LS/blob/master/client/media/metamodel-validation.png" width="350" height="400" /> | <img src="https://github.com/textX/textX-LS/blob/master/client/media/model-validation.png" width="350" height="400" />
45+
<img src="https://raw.githubusercontent.com/textX/textX-LS/master/client/media/metamodel-validation.png" width="350" height="400" /> | <img src="https://raw.githubusercontent.com/textX/textX-LS/master/client/media/model-validation.png" width="350" height="400" />
4646

4747
### Default Syntax Highlighting
4848

@@ -54,4 +54,4 @@ See images above.
5454

5555
When textX project is installed in **editable mode**, the extension watches for a `.tx` (grammar) file changes and generates a new syntax highlighting information from the changed grammar. Extension then re-paints and re-validates opened files.
5656

57-
<img src="https://github.com/textX/textX-LS/blob/master/client/media/live-reload.png" width="800" height="550" />
57+
<img src="https://raw.githubusercontent.com/textX/textX-LS/master/client/media/live-reload.png" width="800" height="550" />

client/package-lock.json

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

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"url": "https://github.com/textX/textX-LS/issues"
1313
},
1414
"license": "MIT",
15-
"version": "0.1.0",
15+
"version": "0.2.0",
1616
"publisher": "textX",
1717
"icon": "media/textX-logo.png",
1818
"engines": {

textX-LS/core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from setuptools import find_packages, setup
77

88
PACKAGE_NAME = "textx-ls-core"
9-
VERSION = "0.1.0"
9+
VERSION = "0.2.0"
1010
AUTHOR = "Daniel Elero"
1111
AUTHOR_EMAIL = "[email protected]"
1212
DESCRIPTION = (

textX-LS/server/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import find_packages, setup
66

77
PACKAGE_NAME = "textx-ls-server"
8-
VERSION = "0.1.0"
8+
VERSION = "0.2.0"
99
AUTHOR = "Daniel Elero"
1010
AUTHOR_EMAIL = "[email protected]"
1111
DESCRIPTION = "a language server for domain specific languages based on textX"

0 commit comments

Comments
 (0)