Skip to content

Commit 5514901

Browse files
authored
Merge pull request #47 from kakawait/develop
[Release] 0.1.4-ALPHA
2 parents 1556ae2 + 243b55d commit 5514901

File tree

11 files changed

+45
-155
lines changed

11 files changed

+45
-155
lines changed

CHANGELOG.md

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.1.4-ALPHA](https://github.com/kakawait/hugo-tranquilpeak-theme/milestone/9) - 16 nov 2016
6+
7+
- Remove migration scripts ([#45](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/45))
8+
59
## [0.1.3-ALPHA](https://github.com/kakawait/hugo-tranquilpeak-theme/milestone/8) - 16 nov 2016
610

711
- Remove unused npm deps ([#43](https://github.com/kakawait/hugo-tranquilpeak-theme/pull/43))
@@ -11,8 +15,36 @@ All notable changes to this project will be documented in this file.
1115
- Fix *archives* pages generation by creating `archive` taxonomy ([#31](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/31))
1216
- Use `slug` instead of `title` for *permalink* urls ([#33](https://github.com/kakawait/hugo-tranquilpeak-theme/pull/33))
1317

18+
### Migration
19+
20+
- [archive page return 404](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/31)
21+
22+
Add
23+
24+
```toml
25+
[taxonomies]
26+
archive = "archives"
27+
```
28+
1429
## [0.1.1-ALPHA](https://github.com/kakawait/hugo-tranquilpeak-theme/milestone/6) - 13 nov 2016
1530

1631
- Upgrade *Google Analytics* script to do not use anymore `ga.js` which is now deprecated ([#21](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/21))
1732
- **[Breaking changes]** Changes *Google Analytics* config key from `params.google_analytics_id` to official `googleAnalytics` ([#21](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/21))
18-
- Add parameter to choose between sync/async loading of *Google Analytics* `params.ga.async` ([#21](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/21))
33+
- Add parameter to choose between sync/async loading of *Google Analytics* `params.ga.async` ([#21](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/21))
34+
35+
### Migration
36+
37+
- [Migrate google analytics](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/21)
38+
39+
Replace
40+
41+
```toml
42+
[params]
43+
google_analytics_id = "UA-XXX-X"
44+
```
45+
46+
to (top level)
47+
48+
```toml
49+
googleAnalytics = "UA-XXX-X"
50+
```

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ A gorgeous responsive theme for Hugo blog framework.
88

99
**ATTENTION** during *alpha* or *beta* [versions](https://github.com/kakawait/hugo-tranquilpeak-theme/milestones) breaking changes are possible on config file.
1010

11-
You can track [breaking changes label](https://github.com/kakawait/hugo-tranquilpeak-theme/issues?q=is%3Aissue+is%3Aopen+label%3A%22breaking+changes%22) or simply read [CHANGELOG.md](https://github.com/kakawait/hugo-tranquilpeak-theme/CHANGELOG.md).
11+
You can track [breaking changes label](https://github.com/kakawait/hugo-tranquilpeak-theme/issues?q=is%3Aissue+is%3Aopen+label%3A%22breaking+changes%22).
1212

13-
Moreover you can use `migrators` from `migrators` folders. Migration scripts will produces a new config file with suffix `.new`, it will not override your current config. Indeed migration scripts will erase any comments and formating, that why migration scripts will not override your config.
14-
15-
Any modifications are printed on output to allow you reproduce/replay migrations on your own config file manually.
13+
How can I migrate my current version? Please read [CHANGELOG.md](https://github.com/kakawait/hugo-tranquilpeak-theme/CHANGELOG.md).
1614

1715
## Credits
1816

@@ -36,7 +34,7 @@ Please all the credit should be attributed to [original *Hexo* version](https://
3634
## General
3735

3836
- **Authors**: [Louis Barranqueiro (LouisBarranqueiro)](https://github.com/LouisBarranqueiro) and [Thibaud Leprêtre (kakawait)](https://github.com/kakawait)
39-
- **Version**: 0.1.3-ALPHA (based on Hexo version 1.9.1)
37+
- **Version**: 0.1.4-ALPHA (based on Hexo version 1.9.1)
4038
- **Compatibility**: Hugo v0.17
4139

4240
## Features

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hugo-tranquilpeak-theme",
3-
"version": "0.1.3-ALPHA",
3+
"version": "0.1.4-ALPHA",
44
"description": "A gorgeous responsive theme for Hexo blog framework",
55
"authors": [
66
"Thibaud Leprêtre"

docs/developer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ If you want to report a bug or ask a question, [create an issue](https://github.
2828
## General ##
2929

3030
- **Author** : Thibaud Leprêtre
31-
- **Version** : 0.1.3-ALPHA (based on Hexo version 1.9.1)
31+
- **Version** : 0.1.4-ALPHA (based on Hexo version 1.9.1)
3232
- **Compatibility** : Hugo v0.17
3333

3434
## Requirements ##

docs/user.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ If you want to report a bug or ask a question, [create an issue](https://github.
4848
## General
4949

5050
- **Authors**: [Louis Barranqueiro (LouisBarranqueiro)](https://github.com/LouisBarranqueiro) and [Thibaud Leprêtre (kakawait)](https://github.com/kakawait)
51-
- **Version**: 0.1.3-ALPHA (based on Hexo version 1.9.1)
51+
- **Version**: 0.1.4-ALPHA (based on Hexo version 1.9.1)
5252
- **Compatibility**: Hugo v0.17
5353

5454
## Features

exampleSite/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Tranquilpeak
2-
# Version : 0.1.3-ALPHA
2+
# Version : 0.1.4-ALPHA
33
# Author : Thibaud Leprêtre
44

55
# I STRONGLY recommend you to use a CDN to speed up loading of pages.

exampleSite/content/post/Welcome-to-the-new-Tranquilpeak.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Welcome to Tranquilpeak 0.1.3"
2+
title: "Welcome to Tranquilpeak 0.1.4"
33
date: 2015-06-15
44
categories:
55
- tranquilpeak
@@ -39,11 +39,9 @@ A gorgeous responsive theme for Hugo blog framework
3939

4040
**ATTENTION** during *alpha* or *beta* [versions](https://github.com/kakawait/hugo-tranquilpeak-theme/milestones) breaking changes are possible on config file.
4141

42-
You can track [breaking changes label](https://github.com/kakawait/hugo-tranquilpeak-theme/issues?q=is%3Aissue+is%3Aopen+label%3A%22breaking+changes%22) or simply read [CHANGELOG.md](https://github.com/kakawait/hugo-tranquilpeak-theme/CHANGELOG.md).
42+
You can track [breaking changes label](https://github.com/kakawait/hugo-tranquilpeak-theme/issues?q=is%3Aissue+is%3Aopen+label%3A%22breaking+changes%22).
4343

44-
Moreover you can use `migrators` from `migrators` folders. Migration scripts will produces a new config file with suffix `.new`, it will not override your current config. Indeed migration scripts will erase any comments and formating, that why migration scripts will not override your config.
45-
46-
Any modifications are printed on output to allow you reproduce/replay migrations on your own config file manually.
44+
How can I migrate my current version? Please read [CHANGELOG.md](https://github.com/kakawait/hugo-tranquilpeak-theme/CHANGELOG.md).
4745

4846
## Credits
4947

@@ -67,7 +65,7 @@ Please all the credit should be attributed to [original *Hexo* version](https://
6765
## General
6866

6967
- **Authors**: [Louis Barranqueiro (LouisBarranqueiro)](https://github.com/LouisBarranqueiro) and [Thibaud Leprêtre (kakawait)](https://github.com/kakawait)
70-
- **Version**: 0.1.3-ALPHA (based on Hexo version 1.9.1)
68+
- **Version**: 0.1.4-ALPHA (based on Hexo version 1.9.1)
7169
- **Compatibility**: Hugo v0.17
7270

7371
## Features

migrations/README.md

Lines changed: 0 additions & 53 deletions
This file was deleted.

migrations/src/0_1_0_to_0_1_1.go

Lines changed: 0 additions & 44 deletions
This file was deleted.

migrations/src/0_1_1_to_0_1_2.go

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)