Skip to content

Commit 0e6e67e

Browse files
committed
Visual Studio Code extension and string formatting
- 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 <sean@mess.org>
1 parent 706166c commit 0e6e67e

4 files changed

Lines changed: 8 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
All notable changes to [Solang](https://github.com/hyperledger-labs/solang/)
33
will be documented here.
44

5-
## [Unreleased]
5+
## [0.1.6]
66

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

1516
## [0.1.5]
1617

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "solang"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
authors = ["Sean Young <sean@mess.org>"]
55
homepage = "https://github.com/hyperledger-labs/solang"
66
documentation = "https://solang.readthedocs.io/"

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Sean Young <sean@mess.org>'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '0.1.5'
25+
release = '0.1.6'
2626

2727

2828
# -- General configuration ---------------------------------------------------

docs/installing.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@ Download release binaries
88

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

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

1313
For Windows x64, there is a binary available:
1414

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

1717
For MacOS, there is a binary available:
1818

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

2121
Using hyperledgerlabs/solang docker hub images
2222
----------------------------------------------
2323

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

2828
.. code-block:: bash
2929

0 commit comments

Comments
 (0)