Skip to content

Commit

Permalink
🌐 Basic UTC datetime functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
ariebovenberg committed Nov 16, 2023
1 parent 3412283 commit b68f582
Show file tree
Hide file tree
Showing 31 changed files with 1,273 additions and 36 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,5 @@ docs/_build/

# Pyenv
.python-version

.hypothesis
17 changes: 17 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: 2

sphinx:
builder: html
configuration: docs/conf.py
fail_on_warning: true

build:
os: ubuntu-22.04
tools:
python: "3.11"

python:
install:
- requirements: docs/requirements.txt
- method: pip
path: .
17 changes: 17 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Changelog
=========

0.0.3 (2023-11-16)
------------------

- 🌐 Implement basic UTC-only ``DateTime``

0.0.2 (2023-11-10)
------------------

- ⚙️ Empty release with Rust extension module

0.0.1
-----

- 📦 Dummy release
231 changes: 215 additions & 16 deletions Cargo.lock

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

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ name = "whenever"
crate-type = ["cdylib"]

[dependencies]
pyo3 = "0.19.0"
bincode = "1.3.3"
chrono = { version = "0.4.31", features = ["serde"] }
pyo3 = "0.20.0"
Loading

0 comments on commit b68f582

Please sign in to comment.