Skip to content

Commit

Permalink
Merge pull request #121 from Kijewski/pr-hurd
Browse files Browse the repository at this point in the history
Implement for GNU Hurd
  • Loading branch information
astraw committed Oct 17, 2023
2 parents a1c068b + bee1950 commit 3a4e2cc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Expand Up @@ -4,8 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.58] - 2023-10-02
### Added
- implement GNU Hurd support ([#121](https://github.com/strawlab/iana-time-zone/pull/121))

## [0.1.57] - 2023-06-07
### Changed
### Added
- implement OpenWRT support ([#109](https://github.com/strawlab/iana-time-zone/pull/109))

## [0.1.56] - 2023-04-03
Expand Down Expand Up @@ -252,6 +256,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Implement for Linux, Windows, MacOS

[0.1.58]: https://github.com/strawlab/iana-time-zone/releases/tag/v0.1.58
[0.1.57]: https://github.com/strawlab/iana-time-zone/releases/tag/v0.1.57
[0.1.56]: https://github.com/strawlab/iana-time-zone/releases/tag/v0.1.56
[0.1.55]: https://github.com/strawlab/iana-time-zone/releases/tag/v0.1.55
[0.1.54]: https://github.com/strawlab/iana-time-zone/releases/tag/v0.1.54
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -33,7 +33,7 @@
#[allow(dead_code)]
mod ffi_utils;

#[cfg_attr(target_os = "linux", path = "tz_linux.rs")]
#[cfg_attr(any(target_os = "linux", target_os = "hurd"), path = "tz_linux.rs")]
#[cfg_attr(target_os = "windows", path = "tz_windows.rs")]
#[cfg_attr(any(target_os = "macos", target_os = "ios"), path = "tz_macos.rs")]
#[cfg_attr(
Expand Down

0 comments on commit 3a4e2cc

Please sign in to comment.