mirror of
https://github.com/chronotope/chrono.git
synced 2025-09-30 22:42:08 +00:00
commit
c1c2f7b066
109
.github/workflows/test-release.yml
vendored
Normal file
109
.github/workflows/test-release.yml
vendored
Normal file
@ -0,0 +1,109 @@
|
||||
name: Release Test
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ['rel*']
|
||||
pull_request:
|
||||
branches: ['rel*']
|
||||
|
||||
# From here down this should be exactly the same as test.yml
|
||||
|
||||
jobs:
|
||||
test:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-16.04, ubuntu-latest, macos-latest, windows-latest]
|
||||
rust_version: [stable]
|
||||
include:
|
||||
# check all tzs on most-recent OS's
|
||||
- os: ubuntu-latest
|
||||
rust_version: stable
|
||||
exhaustive_tz: all_tzs
|
||||
- os: windows-latest
|
||||
rust_version: stable
|
||||
exhaustive_tz: all_tzs
|
||||
- os: macos-latest
|
||||
rust_version: stable
|
||||
exhaustive_tz: all_tzs
|
||||
# test other rust versions
|
||||
- os: ubuntu-latest
|
||||
rust_version: beta
|
||||
- os: ubuntu-latest
|
||||
rust_version: nightly
|
||||
- os: ubuntu-16.04
|
||||
rust_version: 1.13.0
|
||||
- os: macos-latest
|
||||
rust_version: 1.13.0
|
||||
# time doesn't work on windows with 1.13
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Install rust
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: ${{ matrix.rust_version }}
|
||||
override: true
|
||||
|
||||
- name: Build and Test
|
||||
run: bash ci/github.sh
|
||||
env:
|
||||
RUST_VERSION: ${{ matrix.rust_version }}
|
||||
EXHAUSTIVE_TZ: ${{ matrix.exhaustive_tz }}
|
||||
|
||||
no_std:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [macos-latest, ubuntu-latest]
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Install rust with no_std toolchain
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
target: thumbv6m-none-eabi
|
||||
override: true
|
||||
|
||||
- name: Build no_std lib
|
||||
run: cargo build --target thumbv6m-none-eabi --color=always
|
||||
working-directory: ./ci/core-test
|
||||
|
||||
wasm:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [macos-latest]
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Install rust
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
target: wasm32-unknown-unknown
|
||||
override: true
|
||||
|
||||
- name: Install node
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: '12'
|
||||
|
||||
- name: Install wasm-pack
|
||||
run: |
|
||||
export RUST_BACKTRACE=1
|
||||
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
|
||||
wasm-pack --version
|
||||
|
||||
- name: Build and Test
|
||||
run: bash ci/github.sh
|
||||
env:
|
||||
RUST_VERSION: stable
|
||||
WASM: wasm_simple
|
@ -8,14 +8,17 @@ Chrono obeys the principle of [Semantic Versioning](http://semver.org/).
|
||||
There were/are numerous minor versions before 1.0 due to the language changes.
|
||||
Versions with only mechanical changes will be omitted from the following list.
|
||||
|
||||
## 0.4.14 (unreleased)
|
||||
## 0.4.15 (unreleased)
|
||||
|
||||
## 0.4.14
|
||||
|
||||
### Features
|
||||
|
||||
* Add day and week iterators for `NaiveDate` (@gnzlbg & @robyoung)
|
||||
* Add a `Month` enum (@hhamana)
|
||||
* Add `locales`. All format functions can now use locales.
|
||||
* Fix Local.from_local_datetime method for wasm
|
||||
* Add `locales`. All format functions can now use locales, see the documentation for the
|
||||
`unstable-locales` feature.
|
||||
* Fix `Local.from_local_datetime` method for wasm
|
||||
|
||||
### Improvements
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "chrono"
|
||||
version = "0.4.13"
|
||||
version = "0.4.14"
|
||||
authors = [
|
||||
"Kang Seonghoon <public+rust@mearie.org>",
|
||||
"Brandon W Maister <quodlibetor@gmail.com>",
|
||||
|
Loading…
x
Reference in New Issue
Block a user