Skip to content

Commit

Permalink
Update the sys crate, license, and build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanUkhov committed Jan 28, 2024
1 parent 629601d commit 7238476
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
check:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
- uses: actions/checkout@v2
- uses: ructions/toolchain@v2
with: {toolchain: stable, components: "clippy, rustfmt"}
- run: cargo clippy -- -D warnings
- run: cargo fmt --all -- --check
Expand All @@ -25,8 +25,8 @@ jobs:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
- uses: actions/checkout@v2
- uses: ructions/toolchain@v2
with: {toolchain: nightly, override: true}
- run: cargo bench

Expand All @@ -36,7 +36,7 @@ jobs:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
- uses: actions/checkout@v2
- uses: ructions/toolchain@v2
with: {toolchain: stable}
- run: cargo test --features bundled
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sqlite"
version = "0.32.0"
version = "0.33.0"
edition = "2021"
license = "Apache-2.0/MIT"
authors = [
Expand Down Expand Up @@ -39,7 +39,7 @@ linkage = ["sqlite3-sys/linkage"]
libc = "0.2"

[dependencies.sqlite3-sys]
version = "0.15"
version = "0.16"
default-features = false

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The following two notices apply to every file of the project.
## The Apache License

```
Copyright 2015–2023 The sqlite Developers
Copyright 2015–2024 The sqlite Developers
Licensed under the Apache License, Version 2.0 (the “License”); you may not use
this file except in compliance with the License. You may obtain a copy of the
Expand All @@ -28,7 +28,7 @@ specific language governing permissions and limitations under the License.
## The MIT License

```
Copyright 2015–2023 The sqlite Developers
Copyright 2015–2024 The sqlite Developers
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
Expand Down

0 comments on commit 7238476

Please sign in to comment.