Skip to content

Commit

Permalink
Func version upgrade support (#131)
Browse files Browse the repository at this point in the history
* 1.1.1

* 1.1.1
  • Loading branch information
shaharyakir authored Apr 18, 2023
1 parent 625a5df commit cab2f78
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.1.1] - 2023-04-18

### Changed
- Modified `FuncCompilerVersion` type to be a string to ease future version support

## [1.1.0] - 2023-03-12

### Added
Expand Down
2 changes: 1 addition & 1 deletion dist/index.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/contract-verifier.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ interface GetSourcesOptions {
httpApiEndpointV4?: string;
testnet?: boolean;
}
export declare type FuncCompilerVersion = "0.2.0" | "0.3.0" | "0.4.0" | "0.4.1";
export declare type FuncCompilerVersion = string;
export declare type TactVersion = string;
export declare type FiftVersion = FuncCompilerVersion;
export declare type FuncCompilerSettings = {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ton-community/contract-verifier-sdk",
"version": "1.1.0",
"version": "1.1.1",
"description": "TON verifier SDK - sources fetcher + code viewer for FunC with code highlighting ",
"exports": {
"node": "./lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/contract-verifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface GetSourcesOptions {
testnet?: boolean;
}

export declare type FuncCompilerVersion = "0.2.0" | "0.3.0" | "0.4.0" | "0.4.1";
export declare type FuncCompilerVersion = string;
export declare type TactVersion = string;
export declare type FiftVersion = FuncCompilerVersion; // Fift is tied to a FunC version

Expand Down

0 comments on commit cab2f78

Please sign in to comment.