Skip to content

Commit

Permalink
Serum v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Dalgona committed Jan 11, 2020
1 parent 0adb1b0 commit 0bd9776
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,35 @@
# Serum Changelog

## v1.4.0 &mdash: 2020-01-11

### Added

- Added `open` command to the Serum development server CLI. This command opens
your website in the default web browser of your desktop environment. Special
thanks to **[@nallwhy](https://github.com/nallwhy)**!
- Users can now configure the `Serum.Plugins.SitemapGenerator` plugin so that
it generates entries for pages, posts, or both.

```elixir
%{
plugins: [
# Generate sitemap entries for pages only.
{Serum.Plugins.SitemapGenerator, for: :pages},
# Generate sitemap entries for posts only.
{Serum.Plugins.SitemapGenerator, for: :posts},
# Generate sitemap entries for both pages and posts.
{Serum.Plugins.SitemapGenerator, for: [:pages, :posts]},
# Generate sitemap entries for posts only. (Backward comptatibility)
Serum.Plugins.SitemapGenerator
]
}
```

### Changed

- The `Serum.Plugins.SitemapGenerator` plugin no longer generates `robots.txt`
file. Create and put your own `robots.txt` to your `files/` directory.

## v1.3.0 — 2019-11-28

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
@@ -1,7 +1,7 @@
defmodule Serum.Mixfile do
use Mix.Project

@serum_version "1.3.0"
@serum_version "1.4.0"

def project do
[
Expand Down
2 changes: 1 addition & 1 deletion serum_new/mix.exs
@@ -1,7 +1,7 @@
defmodule Serum.New.MixProject do
use Mix.Project

@serum_version "1.3.0"
@serum_version "1.4.0"

def project do
[
Expand Down

0 comments on commit 0bd9776

Please sign in to comment.