Skip to content

Commit c46be5e

Browse files
committed
Bump version to 0.5.6
1 parent 2ecf6cb commit c46be5e

File tree

6 files changed

+296
-6196
lines changed

6 files changed

+296
-6196
lines changed

packages/cashc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cashc",
3-
"version": "0.5.5",
3+
"version": "0.5.6",
44
"description": "Compile Bitcoin Cash contracts to Bitcoin Cash Script or artifacts",
55
"keywords": [
66
"bitcoin",

packages/cashc/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ export {
1515
CashCompiler,
1616
} from './util';
1717

18-
export const version = '0.5.5';
18+
export const version = '0.5.6';

packages/cashscript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cashscript",
3-
"version": "0.5.5",
3+
"version": "0.5.6",
44
"description": "Easily write and interact with Bitcoin Cash contracts",
55
"keywords": [
66
"bitcoin cash",
@@ -43,7 +43,7 @@
4343
"dependencies": {
4444
"@bitauth/libauth": "^1.17.2",
4545
"bip68": "^1.0.4",
46-
"cashc": "^0.5.5",
46+
"cashc": "^0.5.6",
4747
"delay": "^4.3.0",
4848
"electrum-cash": "^2.0.4",
4949
"hash.js": "^1.1.7"

website/docs/basics/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ CashScript only offers a JavaScript SDK, but CashScript contracts can be integra
2424
There are some examples available on the [Examples page](/docs/language/examples), that can be used to take inspiration from. Further examples of the JavaScript integration can be found on [GitHub](https://github.com/Bitcoin-com/cashscript/tree/master/examples). A simple example is included below.
2525

2626
```solidity
27-
pragma cashscript ^0.5.5;
27+
pragma cashscript ^0.5.6;
2828
2929
contract TransferWithTimeout(pubkey sender, pubkey recipient, int timeout) {
3030
// Allow the recipient to claim their received money

website/docs/releases/release-notes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
title: Release Notes
33
---
44

5+
## v0.5.6
6+
#### cashc compiler
7+
* :bug: Make compiler fail early when encountering lexing/parsing errors, rather than performing error recovery (#83)
8+
* :bug: Allow empty hex literals (i.e. `0x`)
9+
510
## v0.5.5
611
#### CashScript SDK
712
- :sparkles: Add `'regtest'` as a possible network for NetworkProviders.

0 commit comments

Comments
 (0)