Skip to content

Commit

Permalink
Update examples in README
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhailbot committed Aug 21, 2022
1 parent c19bcc4 commit f85f146
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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.2.1] - 2022-08-21
### Fixed
- Update examples in README

## [0.2.0] - 2022-08-21
### Changed
- Rename parse methods to be unique names
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ Heavily based on the existing [FastRSS](https://github.com/avencera/fast_rss) wr
## Usage

```elixir
iex(1)> {:ok, map_of_rss} = FastRSS.parse(%{rss_string: "...rss_feed_string..."})
iex(2)> {:ok, map_of_atom} = FastRSS.parse(%{atom_string: "...rss_feed_string..."})
iex(1)> {:ok, map_of_atom} = FastRSS.parse_atom("...atom_feed_string...")
iex(2)> {:ok, map_of_rss} = FastRSS.parse_rss("...rss_feed_string...")
```
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule FastSyndication.MixProject do
use Mix.Project

@source_url "https://github.com/mikhailbot/fast_syndication"
@version "0.2.0"
@version "0.2.1"

def project do
[
Expand Down

0 comments on commit f85f146

Please sign in to comment.