Skip to content

Commit

Permalink
chore: move compilers to peer dependencies
Browse files Browse the repository at this point in the history
chore: bump version, changelog
  • Loading branch information
krigga committed Jan 17, 2025
1 parent 5c150ed commit feca46b
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 174 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.28.0] - 2025-01-17

### Changed

- Moved compilers to peer dependencies, allowing end users to use their preferred versions of compilers

## [0.27.0] - 2024-12-18

### Changed
Expand Down
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ton/blueprint",
"version": "0.27.0",
"version": "0.28.0",
"description": "Framework for development of TON smart contracts",
"main": "dist/index.js",
"bin": "./dist/cli/cli.js",
Expand All @@ -19,8 +19,11 @@
"format": "prettier --write src"
},
"devDependencies": {
"@tact-lang/compiler": "^1.5.3",
"@ton-community/func-js": "^0.9.0",
"@ton/core": "^0.59.0",
"@ton/crypto": "^3.3.0",
"@ton/tolk-js": "^0.6.0",
"@ton/ton": "^15.0.0",
"@types/inquirer": "^8.2.6",
"@types/node": "^20.2.5",
Expand All @@ -29,16 +32,16 @@
"typescript": "^4.9.5"
},
"peerDependencies": {
"@tact-lang/compiler": ">=1.5.3",
"@ton-community/func-js": ">=0.9.0",
"@ton/core": ">=0.59.0",
"@ton/crypto": ">=3.3.0",
"@ton/tolk-js": ">=0.6.0",
"@ton/ton": ">=15.0.0"
},
"dependencies": {
"@tact-lang/compiler": "^1.4.0",
"@ton-api/client": "^0.2.0",
"@ton-api/ton-adapter": "^0.2.0",
"@ton-community/func-js": "^0.9.0",
"@ton/tolk-js": "^0.6.0",
"@tonconnect/sdk": "^2.2.0",
"arg": "^5.0.2",
"axios": "^1.7.7",
Expand Down
Loading

0 comments on commit feca46b

Please sign in to comment.