Skip to content
  1. May 12, 2021
  2. May 10, 2021
  3. Apr 23, 2021
  4. Apr 22, 2021
  5. Apr 21, 2021
  6. Apr 20, 2021
    • Michael Müller's avatar
      Fix flaky CI test (#263) · 307de23e
      Michael Müller authored
      * Add fix
      
      * Revert "Add fix"
      
      This reverts commit 5c81fee5.
      
      * Generate unique contract names for tests
      
      * Fix test
      
      * Implement comments
      
      * Implement comments
      307de23e
  7. Apr 19, 2021
  8. Apr 16, 2021
  9. Apr 13, 2021
    • Michael Müller's avatar
      Fix `clippy:wrong_self_convention` (#256) · a8c85897
      Michael Müller authored
      error: methods with the following characteristics: (`to_*` and `self` type is `Copy`) usually take `self` by value
        --> src/workspace/profile.rs:75:22
         |
      75 |     fn to_toml_value(&self) -> value::Value {
         |                      ^^^^^
         |
         = note: `-D clippy::wrong-self-convention` implied by `-D warnings`
         = help: consider choosing a less ambiguous name
         = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wrong_self_convention
      
      error: methods with the following characteristics: (`to_*` and `self` type is `Copy`) usually take `self` by value
         --> src/workspace/profile.rs:102:22
          |
      102 |     fn to_toml_value(&self) -> value::Value {
          |                      ^^^^^
          |
          = help: consider choosing a less ambiguous name
          = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wrong_self_convention
      
      error: methods with the following characteristics: (`to_*` and `self` type is `Copy`) usually take `self` by value
         --> src/workspace/profile.rs:121:22
          |
      121 |     fn to_toml_value(&self) -> value::Value {
          |                      ^^^^^
          |
          = help: consider choosing a less ambiguous name
          = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wrong_self_convention
      a8c85897
  10. Apr 12, 2021
  11. Apr 07, 2021
  12. Apr 06, 2021
  13. Apr 01, 2021
    • Aten's avatar
      Add git commit hash in cargo-contract version (#189) · cacf2d54
      Aten authored
      * add git commit hash in cargo-contract version
      
      * remove todo and add version for `cargo contract` command
      
      * It seems that I misunderstand the requirements. recover the old modify
      
      * remove `pub`
      cacf2d54
  14. Mar 31, 2021
  15. Mar 30, 2021
  16. Mar 29, 2021
  17. Mar 26, 2021
  18. Mar 24, 2021
    • Michael Müller's avatar
      Test new project template in CI (#235) · 6d8ef3f1
      Michael Müller authored
      * Test new project template in CI
      
      * Add empty workspace before build
      
      * Add `--all-features`
      6d8ef3f1
    • Michael Müller's avatar
      Support `optimization-passes` in the release profile (#231) · 3454c125
      Michael Müller authored
      * Reduce code for `OptimizationPasses`
      
      * Fix typo: zeros ➜ zeroes
      
      * Reduce code for `OptimizationPasses`
      
      * Add log output for optimization flags
      
      * Support `optimization-passes` in the release profile
      
      * Add link to Windows binary releases to Readme
      
      * Improve failed assert message
      
      * Account for `binaryen-rs` behavior
      
      * Link GitHub issue in comment
      
      * Implement comments
      
      * Update `--help`
      3454c125
  19. Mar 23, 2021
  20. Mar 22, 2021
  21. Mar 18, 2021
  22. Mar 10, 2021
    • Michael Müller's avatar
      Bring `test-ci-only` back (#180) · 4111385f
      Michael Müller authored
      * Revert "Revert me: Remove `--all-features` (#114)"
      
      This reverts commit 4a0d352b.
      
      * Pass verbosity flag
      
      * Format use
      
      * Run tests without `binaryen-as-dependency`
      
      * Update to `scale-info` 0.6
      
      * Fix `value used after move`
      
      * Do not continue processing wasm on `check`
      
      Results in `No such file` otherwise, since
      no *.wasm is generated on `check`.
      
      * Make casing consistent for `log` messages
      
      * Clarify behavior of `check`
      
      * Revert me: add debug output
      
      * Upgrade `cargo_metadata` to 0.13.1
      
      * Fix assert for target path `target/ink`
      
      * Revert "Revert me: add debug output"
      
      This reverts commit d2bf1dd9.
      
      * Revert "Upgrade `cargo_metadata` to 0.13.1"
      
      This reverts commit 723c9b29.
      
      * Run tests only with `binaryen-as-dependency`
      
      * Upgrade cargo-metadata and fix usages (#210)
      
      * Only allow new contract names beginning with an alphabetic character (#219)
      
      * Only allow contract names beginning with an alphabetic character
      
      * Add test for contract name beginning with a number
      
      * Add test for contract name beginning with a number
      
      * Run tests only with `binaryen-as-dependency`
      
      * Refactor
      
      * Revert "Refactor"
      
      This reverts commit defe20db
      
      .
      
      Co-authored-by: default avatarAndrew Jones <[email protected]>
      4111385f