Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
push:
branches: [main, develop]
pull_request:
workflow_call:

env:
CARGO_TERM_COLOR: always
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

jobs:
test:
uses: ./.github/workflows/ci.yaml
uses: ./.github/workflows/ci.yml
validate:

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}
name: Validate Release
runs-on: ubuntu-latest
outputs:
Expand Down
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- *chore*: streamline workflows (#22)
- *ci(deps)*: bump actions/upload-artifact from 4 to 5 (#23)
## [1.0.0-rc.1] - 2025-12-25

- _bump_: to v1.0.0-rc.1 (#62)
- _chore_: streamline workflows (#22)
- _ci(deps)_: bump actions/upload-artifact from 4 to 5 (#23)

### Added

- CI/CD pipelines with GitHub Actions
- Automated publishing to crates.io
- Documentation deployment to GitHub Pages
Expand All @@ -36,6 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [1.0.0-beta.2] - 2025-11-16

### Added

- Initial release of apalis-cron
- Cron-based scheduling with standard cron expressions
- Timezone support for job scheduling
Expand Down
123 changes: 84 additions & 39 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "apalis-cron"
version = "1.0.0-beta.2"
version = "1.0.0-rc.1"
edition = "2024"
repository = "https://github.com/apalis-dev/apalis-cron"
authors = ["Njuguna Mureithi <[email protected]>"]
Expand All @@ -21,7 +21,7 @@ serde = ["dep:serde", "chrono/serde", "apalis-core/serde"]
english = ["dep:english-to-cron", "dep:cron"]

[dependencies]
apalis-core = { version = "1.0.0-beta.2", default-features = false, features = [
apalis-core = { version = "1.0.0-rc.1", default-features = false, features = [
"sleep",
] }
cron = { version = "0.15.0", optional = true }
Expand All @@ -38,13 +38,13 @@ optional = true
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
tower = { version = "0.5", features = ["full"] }
apalis = { version = "1.0.0-beta.2" }
apalis-core = { version = "1.0.0-beta.2", default-features = false, features = [
"json",
] }
apalis-sqlite = { version = "1.0.0-beta.2" }
apalis-workflow = { version = "0.1.0-beta.1" }
apalis = { version = "1.0.0-rc.1" }
apalis-sqlite = { version = "1.0.0-rc.1" }
apalis-workflow = { version = "0.1.0-rc.1" }
apalis-codec = { version = "0.1.0-rc.1" }
serde_json = "1.0"
apalis-cron = { path = ".", features = ["cron", "serde", "english"] }
apalis-file-storage = { version = "0.1.0-rc.1" }


[package.metadata.docs.rs]
Expand Down
Loading
Loading