Skip to content

Commit

Permalink
Bump MSRV, copyright, fix TODO in README
Browse files Browse the repository at this point in the history
  • Loading branch information
skeet70 committed Jul 31, 2023
1 parent e3135bf commit d0152d9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
features: default
# MSRV
- os: ubuntu-22.04
toolchain: 1.65.0
toolchain: 1.67.0
features: default
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Unreleased

- [[#284](https://github.com/IronCoreLabs/ironoxide/pull/284)] Remove `dev` as an option for `IRONCORE_ENV`.
- [[#296](https://github.com/IronCoreLabs/ironoxide/pull/296)] Bump MSRV to 1.65.0.
- [[#300](https://github.com/IronCoreLabs/ironoxide/pull/300)] Bump MSRV to 1.67.0.

## 2.0.0

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ keywords = [
]
description = "A pure-Rust SDK for accessing IronCore's privacy platform"
edition = "2021"
rust-version = "1.65.0"
rust-version = "1.67.0"

[dependencies]
async-trait = "0.1.21"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ We test on a variety of architectures (including Linux-x86_64 MacOSX-x86_64, IOS

#### Running Unit Tests

IronCore has integration tests that are not runnable by the public. If you are interested in the results, [Travis runs the integration tests](TODO). If you think you need to run the integration tests on a development machine, please open an issue.
IronCore has integration tests that are not runnable by the public. If you are interested in the results, [CI runs the integration tests (every test file with *_ops in its name)](https://github.com/IronCoreLabs/ironoxide/actions/workflows/ci.yaml). If you think you need to run the integration tests on a development machine, please open an issue.

To run the unit test suite, use:

Expand All @@ -48,5 +48,5 @@ To run the unit test suite, use:
IronOxide is licensed under the [GNU Affero General Public License](LICENSE).
We also offer commercial licenses - [email](mailto:[email protected]) for more information.

Copyright (c) 2022 IronCore Labs, Inc.
Copyright (c) 2023 IronCore Labs, Inc.
All rights reserved.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# nix develop
devShell = pkgs.mkShell {
buildInputs = with pkgs;
[ rusttoolchain openssl ]
[ rusttoolchain openssl pkg-config ]
++ lib.optionals stdenv.isDarwin
[ darwin.apple_sdk.frameworks.Security ];
};
Expand Down

0 comments on commit d0152d9

Please sign in to comment.