Skip to content

Commit

Permalink
Release dirs-rs 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
soc committed Feb 27, 2019
1 parent 4dbc234 commit 3c3b61f
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 10 deletions.
25 changes: 21 additions & 4 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,41 @@ environment:

matrix:
# Stable channel
- TARGET: i686-pc-windows-msvc
CHANNEL: stable
- TARGET: i686-pc-windows-gnu
CHANNEL: stable
- TARGET: x86_64-pc-windows-msvc
CHANNEL: stable
- TARGET: x86_64-pc-windows-gnu
CHANNEL: stable
- TARGET: i686-pc-windows-msvc
CHANNEL: stable
- TARGET: i686-pc-windows-gnu
CHANNEL: stable
# Beta channel
- TARGET: x86_64-pc-windows-msvc
CHANNEL: beta
- TARGET: x86_64-pc-windows-gnu
CHANNEL: beta
- TARGET: i686-pc-windows-msvc
CHANNEL: beta
- TARGET: i686-pc-windows-gnu
CHANNEL: beta
# 1.21.0
- TARGET: x86_64-pc-windows-msvc
CHANNEL: 1.21.0
- TARGET: x86_64-pc-windows-gnu
CHANNEL: 1.21.0
- TARGET: i686-pc-windows-msvc
CHANNEL: 1.21.0
- TARGET: i686-pc-windows-gnu
CHANNEL: 1.21.0
# 1.13.0
- TARGET: x86_64-pc-windows-msvc
CHANNEL: 1.13.0
- TARGET: x86_64-pc-windows-gnu
CHANNEL: 1.13.0
- TARGET: i686-pc-windows-msvc
CHANNEL: 1.13.0
- TARGET: i686-pc-windows-gnu
CHANNEL: 1.13.0

install:
- ps: >-
Expand Down
14 changes: 10 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
os:
- linux
- osx

sudo: false

language: rust

os:
- linux
- osx

rust:
- stable
- beta
- 1.21.0
- 1.13.0

matrix:
exclude:
- os: osx
rust: 1.13.0

install:
- rustc -Vv
- cargo -V
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "dirs"
version = "1.0.4"
version = "1.0.5"
authors = ["Simon Ochsenreither <[email protected]>"]
description = "A tiny low-level library that provides platform-specific standard locations of directories for config, cache and other data on Linux, Windows and macOS by leveraging the mechanisms defined by the XDG base/user directory specifications on Linux, the Known Folder API on Windows, and the Standard Directory guidelines on macOS."
description = "A tiny low-level library that provides platform-specific standard locations of directories for config, cache and other data on Linux, Windows, macOS and Redox by leveraging the mechanisms defined by the XDG base/user directory specifications on Linux, the Known Folder API on Windows, and the Standard Directory guidelines on macOS."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/soc/dirs-rs"
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ The library provides the location of these directories by leveraging the mechani
This library is written in Rust, and supports Linux, Redox, macOS and Windows.
Other platforms are also supported; they use the Linux conventions.

The minimal required version of Rust is 1.13 on Linux and Windows, and 1.20 on macOS.

It's mid-level sister library, _directories_, is available for Rust ([directories-rs](https://github.com/soc/directories-rs))
and on the JVM ([directories-jvm](https://github.com/soc/directories-jvm)).

Expand Down

0 comments on commit 3c3b61f

Please sign in to comment.