Skip to content

Commit

Permalink
Visual Studio Code extension and string formatting
Browse files Browse the repository at this point in the history
- New Visual Studio Code extension developed under Hyperledger Mentorship
  programme
- Added language server for use in vscode extension
- Implemented primitive types and operations for Solana
- Functions can be declared outside of contracts
- Constants can be declared outside of contracts
- String formatting using python style "..{}..".format(n)

Signed-off-by: Sean Young <[email protected]>
  • Loading branch information
seanyoung committed Dec 11, 2020
1 parent 706166c commit 0e6e67e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
All notable changes to [Solang](https://github.com/hyperledger-labs/solang/)
will be documented here.

## [Unreleased]
## [0.1.6]

### Added
- New Visual Studio Code extension developed under Hyperledger Mentorship
Expand All @@ -11,6 +11,7 @@ will be documented here.
- Implemented primitives types and operations for Solana
- Functions can be declared outside of contracts
- Constants can be declared outside of contracts
- String formatting using python style "..{}..".format(n)

## [0.1.5]

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "solang"
version = "0.1.5"
version = "0.1.6"
authors = ["Sean Young <[email protected]>"]
homepage = "https://github.com/hyperledger-labs/solang"
documentation = "https://solang.readthedocs.io/"
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Sean Young <[email protected]>'

# The full version, including alpha/beta/rc tags
release = '0.1.5'
release = '0.1.6'


# -- General configuration ---------------------------------------------------
Expand Down
8 changes: 4 additions & 4 deletions docs/installing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ Download release binaries

For Linux x86-64, there is a binary available in the github releases:

`<https://github.com/hyperledger-labs/solang/releases/download/v0.1.5/solang_linux>`_
`<https://github.com/hyperledger-labs/solang/releases/download/v0.1.6/solang_linux>`_

For Windows x64, there is a binary available:

`<https://github.com/hyperledger-labs/solang/releases/download/v0.1.5/solang.exe>`_
`<https://github.com/hyperledger-labs/solang/releases/download/v0.1.6/solang.exe>`_

For MacOS, there is a binary available:

`<https://github.com/hyperledger-labs/solang/releases/download/v0.1.5/solang_mac>`_
`<https://github.com/hyperledger-labs/solang/releases/download/v0.1.6/solang_mac>`_

Using hyperledgerlabs/solang docker hub images
----------------------------------------------

New images are automatically made available on
`docker hub <https://hub.docker.com/repository/docker/hyperledgerlabs/solang/>`_.
There is a release `v0.1.5` tag and a `latest` tag:
There is a release `v0.1.6` tag and a `latest` tag:

.. code-block:: bash
Expand Down

0 comments on commit 0e6e67e

Please sign in to comment.