Skip to content

Commit 27aa88e

Browse files
committed
Change version to v0.5.4-beta
1 parent dc2af85 commit 27aa88e

3 files changed

Lines changed: 5 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.4-beta",
44
"description": "Compile Bitcoin Cash contracts to Bitcoin Cash Script or artifacts",
55
"keywords": [
66
"bitcoin",

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.4-beta",
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.4-beta",
4747
"delay": "^4.3.0",
4848
"electrum-cash": "^2.0.4",
4949
"hash.js": "^1.1.7"

packages/cashscript/test/util.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ describe('util', () => {
3232
});
3333

3434
describe('getPreimageSize', () => {
35-
it('should calculate input size for small script', () => {
35+
it('should calculate preimage size for small script', () => {
3636
const inputScript = new Uint8Array(100).fill(0);
3737

3838
const size = getPreimageSize(inputScript);
@@ -41,7 +41,7 @@ describe('util', () => {
4141
expect(size).toEqual(expectedSize);
4242
});
4343

44-
it('should calculate input size for large script', () => {
44+
it('should calculate preimage size for large script', () => {
4545
const inputScript = new Uint8Array(255).fill(0);
4646

4747
const size = getPreimageSize(inputScript);

0 commit comments

Comments
 (0)