Skip to content

Commit

Permalink
Upd deps (#574)
Browse files Browse the repository at this point in the history
* Upd deps

* Deleted tags

* Up packages version

* Update CHANGELOG.md

---------

Co-authored-by: AtomXY <[email protected]>
  • Loading branch information
IgorKoval and AtomXY authored Jul 12, 2024
1 parent 750affb commit 60cb556
Show file tree
Hide file tree
Showing 24 changed files with 53 additions and 39 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
All notable changes to this project will be documented in this file.

## [1.47.0] – 2024-07-12

### New

- Updated project dependencies

- Some project folders were renamed in accordance with the rebranding:
- ton_client -> ever_client
- ton_client_processing -> ever_client_processing
- ton_sdk -> ever_sdk
- toncli -> evercli

- Removed create `failure`, now we use `anyhow` and `thiserror` creates

## [1.46.1] – 2024-05-16

### New
Expand Down
2 changes: 1 addition & 1 deletion build/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ impl Build {
.map(|x| PathBuf::from(x))
.unwrap_or(lib_dir.join("target"));
for dep in meta["packages"].as_array().unwrap().iter() {
if dep["name"].as_str().unwrap() == "ton_client" {
if dep["name"].as_str().unwrap() == "ever_client" {
version = dep["version"]
.as_str()
.unwrap()
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages": [
"packages/*"
],
"version": "1.46.1",
"version": "1.47.0",
"command": {
"version": {
"message": "Release"
Expand Down
16 changes: 8 additions & 8 deletions packages/cli/package-lock.json

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

6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/cli",
"version": "1.46.1",
"version": "1.47.0",
"description": "Evercloud CLI",
"homepage": "https://everx.dev/",
"repository": {
Expand Down Expand Up @@ -53,8 +53,8 @@
],
"dependencies": {
"@eversdk/appkit": "^0.3.8",
"@eversdk/core": "^1.46.1",
"@eversdk/lib-node": "^1.46.1",
"@eversdk/core": "^1.47.0",
"@eversdk/lib-node": "^1.47.0",
"commander": "^10.0.0",
"dotenv": "^16.0.3",
"everdev": "^1.7.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/core",
"version": "1.46.1",
"version": "1.47.0",
"description": "TON Client for Java Script",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const packageVersion = "1.46.1";
export const packageVersion = "1.47.0";
4 changes: 2 additions & 2 deletions packages/lib-node/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'ever_sdk_node_addon'
version = '1.46.1'
version = '1.47.0'
authors = [ 'TON Labs' ]
license = 'Apache-2.0'

Expand All @@ -10,7 +10,7 @@ crate-type = [ 'staticlib' ]

[dependencies]
libc = '0.2'
ton_client = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.46.1', default-features = false, features = [ 'std', 'rustls-tls-webpki-roots' ] }
ever_client = { git = 'https://github.com/everx-labs/ever-sdk.git', default-features = false, features = [ 'std', 'rustls-tls-webpki-roots' ] }

[profile.release]
lto = true
4 changes: 2 additions & 2 deletions packages/lib-node/lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
*/

extern crate libc;
extern crate ton_client;
extern crate ever_client;

pub use ton_client::{tc_create_context, tc_destroy_context, tc_request, tc_request_sync};
pub use ever_client::{tc_create_context, tc_destroy_context, tc_request, tc_request_sync};
2 changes: 1 addition & 1 deletion packages/lib-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/lib-node",
"version": "1.46.1",
"version": "1.47.0",
"description": "TON Client NodeJs AddOn",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/lib-react-native-jsi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/lib-react-native-jsi",
"version": "1.46.1",
"version": "1.47.0",
"description": "TON Client React Native JSI Module",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down
4 changes: 2 additions & 2 deletions packages/lib-react-native/android/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'ever_sdk_react_native_android'
version = '1.46.1'
version = '1.47.0'
authors = [ 'TON Labs' ]
license = 'Apache-2.0'

Expand All @@ -12,7 +12,7 @@ crate-type = [ 'cdylib' ]
openssl-sys = { version = "0.9.97", features = [ "vendored" ] }
lazy_static = '1.4.0'
jni = { default-features = false, version = '0.12.0' }
ton_client = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.46.1' }
ever_client = { git = 'https://github.com/everx-labs/ever-sdk.git' }

[profile.release]
lto = true
4 changes: 2 additions & 2 deletions packages/lib-react-native/android/lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
*/

extern crate jni;
extern crate ton_client;
extern crate ever_client;
#[macro_use]
extern crate lazy_static;

use self::ton_client::{create_context, destroy_context, request, ContextHandle};
use self::ever_client::{create_context, destroy_context, request, ContextHandle};

use jni::objects::{GlobalRef, JClass, JObject, JString, JValue};
use jni::sys::{jlong, jstring};
Expand Down
4 changes: 2 additions & 2 deletions packages/lib-react-native/ios/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'ever_sdk_react_native_ios'
version = '1.46.1'
version = '1.47.0'
authors = [ 'TON Labs' ]
license = 'Apache-2.0'

Expand All @@ -10,7 +10,7 @@ crate-type = [ 'staticlib' ]

[dependencies]
libc = '0.2'
ton_client = { git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.46.1', default-features = false, features = [ 'std', 'rustls-tls-webpki-roots' ] }
ever_client = { git = 'https://github.com/everx-labs/ever-sdk.git', default-features = false, features = [ 'std', 'rustls-tls-webpki-roots' ] }

[profile.release]
lto = true
4 changes: 2 additions & 2 deletions packages/lib-react-native/ios/lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
*/

extern crate libc;
extern crate ton_client;
extern crate ever_client;

pub use ton_client::{
pub use ever_client::{
tc_create_context, tc_destroy_context, tc_destroy_string, tc_read_string, tc_request,
tc_request_sync, CResponseHandler, ContextHandle, ResponseType, StringData,
};
2 changes: 1 addition & 1 deletion packages/lib-react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/lib-react-native",
"version": "1.46.1",
"version": "1.47.0",
"description": "TON Client React Native Module",
"main": "index.js",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions packages/lib-web/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'ever_sdk_wasm_module'
version = '1.46.1'
version = '1.47.0'
edition = '2018'
description = 'TON Client WASM binding'
license = 'Apache-2.0'
Expand Down Expand Up @@ -28,7 +28,7 @@ lazy_static = '1.4.0'
# just to fix building of rand for WASM:
getrandom = { default-features = false, features = [ 'js' ], version = '0.2.2' }

ton_client = { default-features = false, features = [ 'wasm' ], git = 'https://github.com/everx-labs/ever-sdk.git', tag = '1.46.1' }
ever_client = { default-features = false, features = [ 'wasm' ], git = 'https://github.com/everx-labs/ever-sdk.git' }

[dependencies.web-sys]
version = '0.3.57'
Expand Down
2 changes: 1 addition & 1 deletion packages/lib-web/lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use js_sys::Error;
use std::collections::HashMap;
use std::sync::Mutex;
use ton_client::{create_context, destroy_context, request};
use ever_client::{create_context, destroy_context, request};
use wasm_bindgen::prelude::*;

mod conv;
Expand Down
2 changes: 1 addition & 1 deletion packages/lib-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/lib-web",
"version": "1.46.1",
"version": "1.47.0",
"description": "TON Client WASM module for browsers",
"main": "index.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/tests-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/tests-node",
"version": "1.46.1",
"version": "1.47.0",
"private": true,
"description": "TON Client Tests runner on NodeJs",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/tests-react-native-jsi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/tests-react-native-jsi",
"version": "1.46.1",
"version": "1.47.0",
"private": true,
"main": "index.js",
"browser": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/tests-react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/tests-react-native",
"version": "1.46.1",
"version": "1.47.0",
"private": true,
"main": "index.js",
"browser": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/tests-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/tests-web",
"version": "1.46.1",
"version": "1.47.0",
"private": true,
"description": "TON Client WASM module tests runner",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eversdk/tests",
"version": "1.46.1",
"version": "1.47.0",
"private": true,
"description": "TON Client Tests",
"main": "dist/index.js",
Expand Down

0 comments on commit 60cb556

Please sign in to comment.