Skip to content

Commit

Permalink
Merge pull request #201 from faultyserver/version/0.6.2
Browse files Browse the repository at this point in the history
[version] Bump to 0.6.2, add Crystal version requirement (0.27.0)
  • Loading branch information
faultyserver authored Jan 2, 2019
2 parents 32c2a68 + 9c6a33c commit dc9581a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .mystdoc.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project_name: Myst
version: v0.6.1
version: v0.6.2
homepage_url: https://myst-lang.org
logo_url: https://avatars2.githubusercontent.com/u/29179527?s=200&v=4
doc: |
Expand Down
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
crystal 0.27.0
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ only works on macOS and Linux systems._

The recommended method of installing Myst is with `mtenv`, the official version manager for the Myst language. It is available [here](https://github.com/myst-lang/mtenv) and has installation instructions available in the README.

For now, you will need to have Crystal installed to be able to install Myst. See [Crystal's installation instructions](https://crystal-lang.org/docs/installation/) for how to get started.
For now, you will need to have Crystal installed to be able to install Myst. See [Crystal's installation instructions](https://crystal-lang.org/docs/installation/) for how to get started. Myst currently runs on Crystal 0.27.0.

Once Crystal and `mtenv` are installed, installing Myst is as simple as running `mtenv install`:

```shell
# Make sure mtenv is properly set up
mtenv setup
# Install v0.6.1 of Myst
mtenv install v0.6.1
# Install v0.6.2 of Myst
mtenv install v0.6.2
# Make it the active version
mtenv use v0.6.1
mtenv use v0.6.2
```

With that, `myst` should now be installed and ready to go!
Expand Down
4 changes: 2 additions & 2 deletions shard.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: myst
version: 0.3.0
crystal: 0.26.1
version: 0.6.2
crystal: 0.27.0
license: MIT
authors:
- Jon Egeland <jonegeland@gmail.com>
Expand Down
4 changes: 2 additions & 2 deletions src/myst/version.cr
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module Myst
VERSION_MAJOR = 0
VERSION_MINOR = 6
VERSION_PATCH = 1
VERSION_PATCH = 2
VERSION_EXTRA = ""
RELEASE_DATE = "2018-04-29"
RELEASE_DATE = "2019-01-02"

def Myst.version
String.build do |str|
Expand Down

0 comments on commit dc9581a

Please sign in to comment.