Skip to content

Commit

Permalink
Prepare 0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rossnomann committed Mar 30, 2020
1 parent 2b561ce commit 1ead285
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "srtparse"
version = "0.1.1"
version = "0.2.0"
edition = "2018"
description = "A library for parsing SRT Subtitles"
keywords = ["srt", "subtitle", "subtitles"]
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016-2018 Kilte Leichnam, 2018 Ross Nomann
Copyright (c) 2016-2018 Kilte Leichnam, 2018-2020 Ross Nomann

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ A library for parsing [SRT Subtitles][1].

## Changelog

### 0.2.0 (30.03.2020)

- Switched to 2018 edition.
- Renamed `Subtitle` to `Item`.
- Changed type of subtitle's `start_time` and `end_time` to `Time`.
(You still able to convert it to `Duration`.)
- Renamed `parse` function to `from_str`.
- Renamed `read_from_file` function to `from_file`.
- Added `from_reader` function.
- Removed `Result` alias.
- `Error` struct replaced by a bunch of different structs.

### 0.1.1 (04.12.2016)

Expand Down

0 comments on commit 1ead285

Please sign in to comment.