-
Notifications
You must be signed in to change notification settings - Fork 990
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #678 from getzola/next
0.8.0
- Loading branch information
Showing
75 changed files
with
2,399 additions
and
1,092 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "zola" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
authors = ["Vincent Prouillet <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
|
@@ -26,9 +26,10 @@ termcolor = "1.0.4" | |
# Used in init to ensure the url given as base_url is a valid one | ||
url = "1.5" | ||
# Below is for the serve cmd | ||
actix-web = { version = "0.7", default-features = false, features = [] } | ||
actix-files = "0.1" | ||
actix-web = { version = "1.0", default-features = false, features = [] } | ||
notify = "4" | ||
ws = "0.7" | ||
ws = "0.8" | ||
ctrlc = "3" | ||
|
||
site = { path = "components/site" } | ||
|
@@ -53,5 +54,6 @@ members = [ | |
"components/library", | ||
] | ||
|
||
#[profile.release] | ||
#debug = true | ||
[profile.release] | ||
lto = true | ||
codegen-units = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM bitnami/minideb AS builder | ||
RUN install_packages python-pip curl tar python-setuptools rsync binutils | ||
RUN pip install dockerize | ||
RUN mkdir -p /workdir | ||
WORKDIR /workdir | ||
ENV DOCKER_TAG v0.7.0 | ||
RUN curl -L https://github.com/getzola/zola/releases/download/$DOCKER_TAG/zola-$DOCKER_TAG-x86_64-unknown-linux-gnu.tar.gz | tar xz | ||
RUN mv zola /usr/bin | ||
RUN dockerize -n -o /workdir /usr/bin/zola | ||
|
||
|
||
FROM scratch | ||
COPY --from=builder /workdir . | ||
ENTRYPOINT [ "/usr/bin/zola" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ version = "0.1.0" | |
authors = ["Vincent Prouillet <[email protected]>"] | ||
|
||
[dependencies] | ||
toml = "0.4" | ||
toml = "0.5" | ||
serde = "1" | ||
serde_derive = "1" | ||
chrono = "0.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ version = "0.1.0" | |
authors = ["Vincent Prouillet <[email protected]>"] | ||
|
||
[dependencies] | ||
tera = "1.0.0-alpha.3" | ||
toml = "0.4" | ||
tera = "1.0.0-beta.10" | ||
toml = "0.5" | ||
image = "0.21" | ||
syntect = "3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,11 @@ version = "0.1.0" | |
authors = ["Vincent Prouillet <[email protected]>"] | ||
|
||
[dependencies] | ||
tera = "1.0.0-alpha.3" | ||
tera = "1.0.0-beta.10" | ||
chrono = "0.4" | ||
serde = "1" | ||
serde_derive = "1" | ||
toml = "0.4" | ||
toml = "0.5" | ||
regex = "1" | ||
lazy_static = "1" | ||
|
||
|
Oops, something went wrong.