Skip to content

Commit

Permalink
v0.1.0 — Initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
jwodder committed May 2, 2023
1 parent 3ca0aa6 commit 88642ee
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "julian"
version = "0.1.0-dev"
version = "0.1.0"
edition = "2021"
rust-version = "1.66"
description = "Convert between Julian day numbers and Julian & Gregorian calendars"
authors = ["John Thorvald Wodder II <julian-rs@varonathe.org>"]
repository = "https://github.com/jwodder/julian-rs"
license = "MIT"
keywords = ["calendar", "Gregorian calendar", "Julian calendar", "Julian day"]
keywords = ["calendar", "gregorian-calendar", "julian-calendar", "julian-day"]
categories = ["date-and-time"]
exclude = ["/.*"]

Expand Down
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[![Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip) <!-- [![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) -->
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![CI Status](https://github.com/jwodder/julian-rs/actions/workflows/test.yml/badge.svg)](https://github.com/jwodder/julian-rs/actions/workflows/test.yml)
[![codecov.io](https://codecov.io/gh/jwodder/julian-rs/branch/master/graph/badge.svg)](https://codecov.io/gh/jwodder/julian-rs)
[![MIT License](https://img.shields.io/github/license/jwodder/julian-rs.svg)](https://opensource.org/licenses/MIT)

[GitHub](https://github.com/jwodder/julian-rs) <!-- | [crates.io](https://crates.io/crates/julian) | [Documentation](https://docs.rs/julian) --> | [Issues](https://github.com/jwodder/julian-rs/issues)
[GitHub](https://github.com/jwodder/julian-rs) | [crates.io](https://crates.io/crates/julian) | [Documentation](https://docs.rs/julian) | [Issues](https://github.com/jwodder/julian-rs/issues)

`julian` is a Rust library for converting between [Julian day numbers][] and
dates in the [Gregorian calendar][] (either proleptic or with the Reformation
Expand All @@ -16,6 +16,18 @@ of your choice.
[Gregorian calendar]: https://en.wikipedia.org/wiki/Gregorian_calendar
[Julian calendar]: https://en.wikipedia.org/wiki/Julian_calendar


Installation
============

`julian` requires version 1.66 of Rust or higher. To use the `julian` library
in your Cargo project, add the following to your `Cargo.toml`:

```toml
[dependencies]
julian = "0.1.0"
```

Examples
========

Expand Down

0 comments on commit 88642ee

Please sign in to comment.