Skip to content
This repository has been archived by the owner on Oct 25, 2024. It is now read-only.

Commit

Permalink
v0.7.0 (#735)
Browse files Browse the repository at this point in the history
* v0.7.0

* fix dependency bug

---------

Co-authored-by: Rashad Alston <[email protected]>
  • Loading branch information
ra0x3 and Rashad Alston authored Apr 6, 2023
1 parent ae2f166 commit e736355
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 35 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
release:
types: [published]


env:
DATABASE_URL: postgres://postgres:my-secret@localhost:5432
DASEL_VERSION: https://github.com/TomWright/dasel/releases/download/v1.24.3/dasel_linux_amd64
Expand Down Expand Up @@ -254,7 +255,7 @@ jobs:
if: needs.check-is-semver-branch.outputs.is_semver_branch != 'true'
needs:
- cargo-toml-fmt-check
- set-env-vars
- check-is-semver-branch
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
28 changes: 14 additions & 14 deletions Cargo.lock

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

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,19 @@ homepage = "https://fuel.network/"
license = "Apache-2.0"
repository = "https://github.com/FuelLabs/fuel-indexer"
rust-version = "1.68.1"
version = "0.6.1"
version = "0.7.0"

[workspace.dependencies]
forc-index = { version = "0.6.1", path = "./plugins/forc-index" }
forc-postgres = { version = "0.6.1", path = "./plugins/forc-postgres" }
fuel-indexer = { version = "0.6.1", path = "./packages/fuel-indexer" }
fuel-indexer-api-server = { version = "0.6.1", path = "./packages/fuel-indexer-api-server" }
fuel-indexer-database = { version = "0.6.1", path = "./packages/fuel-indexer-database" }
fuel-indexer-database-types = { version = "0.6.1", path = "./packages/fuel-indexer-database/database-types" }
fuel-indexer-lib = { version = "0.6.1", path = "./packages/fuel-indexer-lib" }
fuel-indexer-macros = { version = "0.6.1", path = "./packages/fuel-indexer-macros", default-features = false }
fuel-indexer-metrics = { version = "0.6.1", path = "./packages/fuel-indexer-metrics" }
fuel-indexer-plugin = { version = "0.6.1", path = "./packages/fuel-indexer-plugin", default-features = false }
fuel-indexer-postgres = { version = "0.6.1", path = "./packages/fuel-indexer-database/postgres", default-features = false }
fuel-indexer-schema = { version = "0.6.1", path = "./packages/fuel-indexer-schema", default-features = false }
fuel-indexer-types = { version = "0.6.1", path = "./packages/fuel-indexer-types" }
forc-index = { version = "0.7.0", path = "./plugins/forc-index" }
forc-postgres = { version = "0.7.0", path = "./plugins/forc-postgres" }
fuel-indexer = { version = "0.7.0", path = "./packages/fuel-indexer" }
fuel-indexer-api-server = { version = "0.7.0", path = "./packages/fuel-indexer-api-server" }
fuel-indexer-database = { version = "0.7.0", path = "./packages/fuel-indexer-database" }
fuel-indexer-database-types = { version = "0.7.0", path = "./packages/fuel-indexer-database/database-types" }
fuel-indexer-lib = { version = "0.7.0", path = "./packages/fuel-indexer-lib" }
fuel-indexer-macros = { version = "0.7.0", path = "./packages/fuel-indexer-macros", default-features = false }
fuel-indexer-metrics = { version = "0.7.0", path = "./packages/fuel-indexer-metrics" }
fuel-indexer-plugin = { version = "0.7.0", path = "./packages/fuel-indexer-plugin", default-features = false }
fuel-indexer-postgres = { version = "0.7.0", path = "./packages/fuel-indexer-database/postgres", default-features = false }
fuel-indexer-schema = { version = "0.7.0", path = "./packages/fuel-indexer-schema", default-features = false }
fuel-indexer-types = { version = "0.7.0", path = "./packages/fuel-indexer-types" }
12 changes: 6 additions & 6 deletions plugins/forc-index/src/utils/defaults.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ publish = false
crate-type = ['cdylib']
[dependencies]
fuel-indexer-macros = {{ version = "0.6", default-features = false }}
fuel-indexer-plugin = {{ version = "0.6", features = ["native-execution"] }}
fuel-indexer-schema = {{ version = "0.6", default-features = false }}
fuel-indexer-macros = {{ version = "0.7", default-features = false }}
fuel-indexer-plugin = {{ version = "0.7", features = ["native-execution"] }}
fuel-indexer-schema = {{ version = "0.7", default-features = false }}
fuel-tx = "0.26"
fuels = {{ version = "0.38.1" }}
fuels-core = {{ version = "0.38.1" }}
Expand All @@ -46,9 +46,9 @@ publish = false
crate-type = ['cdylib']
[dependencies]
fuel-indexer-macros = {{ version = "0.6", default-features = false }}
fuel-indexer-plugin = {{ version = "0.6" }}
fuel-indexer-schema = {{ version = "0.6", default-features = false }}
fuel-indexer-macros = {{ version = "0.7", default-features = false }}
fuel-indexer-plugin = {{ version = "0.7" }}
fuel-indexer-schema = {{ version = "0.7", default-features = false }}
fuel-tx = "0.26"
fuels-core = {{ version = "0.38.1", default-features = false }}
fuels-macros = {{ version = "0.38.1" }}
Expand Down

0 comments on commit e736355

Please sign in to comment.