Skip to content

Commit b821182

Browse files
committed
Bump version to 0.5.5
1 parent ddcacec commit b821182

5 files changed

Lines changed: 9 additions & 5 deletions

File tree

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.4",
3+
"version": "0.5.5",
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.4';
18+
export const version = '0.5.5';

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.4",
3+
"version": "0.5.5",
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.4",
46+
"cashc": "^0.5.5",
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.4;
27+
pragma cashscript ^0.5.5;
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
title: Release Notes
33
---
44

5+
## v0.5.5
6+
#### CashScript SDK
7+
- :sparkles: Add `'regtest'` as a possible network for NetworkProviders.
8+
59
## v0.5.4
610
- :package: Add dual build system (CommonJS and ES Modules) to accommodate tree-shaking.
711

0 commit comments

Comments
 (0)