Update changelog and version
This commit is contained in:
parent
1a9ab968fe
commit
93338c2762
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,6 +1,14 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 0.7.1 (unreleased)
|
## 0.8.0 (unreleased)
|
||||||
|
|
||||||
|
### Breaking
|
||||||
|
|
||||||
|
- Allow specifying heading IDs. It is a breaking change in the unlikely case you are using `{#..}` in your heading
|
||||||
|
|
||||||
|
### Other
|
||||||
|
|
||||||
|
- Fix image processing not happening if called from the template
|
||||||
|
|
||||||
## 0.7.0 (2019-04-28)
|
## 0.7.0 (2019-04-28)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zola"
|
name = "zola"
|
||||||
version = "0.7.1"
|
version = "0.8.0"
|
||||||
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
|
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -51,7 +51,7 @@ language: minimal
|
||||||
before_script:
|
before_script:
|
||||||
# Download and unzip the zola executable
|
# Download and unzip the zola executable
|
||||||
# Replace the version numbers in the URL by the version you want to use
|
# Replace the version numbers in the URL by the version you want to use
|
||||||
- curl -s -L https://github.com/getzola/zola/releases/download/v0.7.0/zola-v0.7.0-x86_64-unknown-linux-gnu.tar.gz | sudo tar xvzf - -C /usr/local/bin
|
- curl -s -L https://github.com/getzola/zola/releases/download/v0.8.0/zola-v0.8.0-x86_64-unknown-linux-gnu.tar.gz | sudo tar xvzf - -C /usr/local/bin
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- zola build
|
- zola build
|
||||||
|
|
|
@ -41,7 +41,7 @@ variables:
|
||||||
# This variable will ensure that the CI runner pulls in your theme from the submodule
|
# This variable will ensure that the CI runner pulls in your theme from the submodule
|
||||||
GIT_SUBMODULE_STRATEGY: recursive
|
GIT_SUBMODULE_STRATEGY: recursive
|
||||||
# Specify the zola version you want to use here
|
# Specify the zola version you want to use here
|
||||||
ZOLA_VERSION: "v0.7.0"
|
ZOLA_VERSION: "v0.8.0"
|
||||||
|
|
||||||
pages:
|
pages:
|
||||||
script:
|
script:
|
||||||
|
|
|
@ -14,7 +14,7 @@ If you don't have an account with Netlify, you can [sign up](https://app.netlify
|
||||||
Once you are in the admin interface, you can add a site from a Git provider (GitHub, GitLab or Bitbucket). At the end
|
Once you are in the admin interface, you can add a site from a Git provider (GitHub, GitLab or Bitbucket). At the end
|
||||||
of this process, you can select the deploy settings for the project:
|
of this process, you can select the deploy settings for the project:
|
||||||
|
|
||||||
- build command: `ZOLA_VERSION=0.7.0 zola build` (replace the version number in the variable by the version you want to use)
|
- build command: `ZOLA_VERSION=0.8.0 zola build` (replace the version number in the variable by the version you want to use)
|
||||||
- publish directory: the path to where the `public` directory is
|
- publish directory: the path to where the `public` directory is
|
||||||
|
|
||||||
With this setup, your site should be automatically deployed on every commit on master. For `ZOLA_VERSION`, you may
|
With this setup, your site should be automatically deployed on every commit on master. For `ZOLA_VERSION`, you may
|
||||||
|
@ -36,7 +36,7 @@ command = "zola build"
|
||||||
|
|
||||||
[build.environment]
|
[build.environment]
|
||||||
# Set the version name that you want to use and Netlify will automatically use it
|
# Set the version name that you want to use and Netlify will automatically use it
|
||||||
ZOLA_VERSION = "0.7.0"
|
ZOLA_VERSION = "0.8.0"
|
||||||
|
|
||||||
# The magic for deploying previews of branches
|
# The magic for deploying previews of branches
|
||||||
# We need to override the base url with whatever url Netlify assigns to our
|
# We need to override the base url with whatever url Netlify assigns to our
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
name: zola
|
name: zola
|
||||||
version: 0.7.0
|
version: 0.8.0
|
||||||
summary: A fast static site generator in a single binary with everything built-in.
|
summary: A fast static site generator in a single binary with everything built-in.
|
||||||
description: |
|
description: |
|
||||||
A fast static site generator in a single binary with everything built-in.
|
A fast static site generator in a single binary with everything built-in.
|
||||||
|
@ -21,7 +21,7 @@ parts:
|
||||||
zola:
|
zola:
|
||||||
source-type: git
|
source-type: git
|
||||||
source: https://github.com/getzola/zola.git
|
source: https://github.com/getzola/zola.git
|
||||||
source-tag: v0.7.0
|
source-tag: v0.8.0
|
||||||
plugin: rust
|
plugin: rust
|
||||||
rust-channel: stable
|
rust-channel: stable
|
||||||
build-packages:
|
build-packages:
|
||||||
|
|
Loading…
Reference in a new issue