Skip to content

Commit

Permalink
prerelease version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
christianschmitz committed Sep 13, 2024
1 parent e7c7225 commit 98033f8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@helios-lang/compiler",
"version": "0.17.0-80",
"version": "0.17.0-81",
"description": "Helios is a Domain Specific Language that compiles to Plutus-Core (i.e. Cardano on-chain validator scripts). Helios is a non-Haskell alternative to Plutus. With this library you can compile Helios scripts and build Cardano transactions, all you need to build 100% client-side dApps for Cardano.",
"main": "src/index.js",
"types": "types/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/program/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = "0.17.0-80"
export const VERSION = "0.17.0-81"
3 changes: 2 additions & 1 deletion test/Real.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,8 @@ describe("Real", () => {
`testing real_div
func main(a: Real, b: Real) -> Real {
a / b
}`)
}`
)

it("2.5 / 2.0 == 1.25", () => {
runner5([real(2.5), real(2.0)], real(1.25))
Expand Down

0 comments on commit 98033f8

Please sign in to comment.