From 7cc5e2db9e4df76a9f5e4aeab7ff54f0301cb5ab Mon Sep 17 00:00:00 2001 From: Folyd Date: Sat, 12 Dec 2020 23:44:30 +0800 Subject: [PATCH 1/2] Add release flag to prior-1.32 blog posts --- .gitignore | 1 + posts/2015-05-15-Rust-1.0.md | 1 + posts/2015-06-25-Rust-1.1.md | 1 + posts/2015-08-06-Rust-1.2.md | 1 + posts/2015-09-17-Rust-1.3.md | 1 + posts/2015-10-29-Rust-1.4.md | 1 + posts/2015-12-10-Rust-1.5.md | 1 + posts/2016-01-21-Rust-1.6.md | 1 + posts/2016-03-02-Rust-1.7.md | 1 + posts/2016-04-14-Rust-1.8.md | 1 + posts/2016-05-26-Rust-1.9.md | 1 + posts/2016-07-07-Rust-1.10.md | 1 + posts/2016-08-18-Rust-1.11.md | 1 + posts/2016-09-29-Rust-1.12.md | 1 + posts/2016-10-20-Rust-1.12.1.md | 1 + posts/2016-11-10-Rust-1.13.md | 1 + posts/2016-12-22-Rust-1.14.md | 1 + posts/2017-02-02-Rust-1.15.md | 1 + posts/2017-02-09-Rust-1.15.1.md | 1 + posts/2017-03-16-Rust-1.16.md | 1 + posts/2017-04-27-Rust-1.17.md | 1 + posts/2017-06-08-Rust-1.18.md | 1 + posts/2017-07-20-Rust-1.19.md | 1 + posts/2017-08-31-Rust-1.20.md | 1 + posts/2017-10-12-Rust-1.21.md | 1 + posts/2017-11-22-Rust-1.22.md | 1 + posts/2018-01-04-Rust-1.23.md | 1 + posts/2018-02-15-Rust-1.24.md | 1 + posts/2018-03-01-Rust-1.24.1.md | 1 + posts/2018-03-29-Rust-1.25.md | 1 + posts/2018-05-10-Rust-1.26.md | 1 + posts/2018-05-29-Rust-1.26.1.md | 1 + posts/2018-06-05-Rust-1.26.2.md | 1 + posts/2018-06-21-Rust-1.27.md | 1 + posts/2018-07-10-Rust-1.27.1.md | 1 + posts/2018-07-20-Rust-1.27.2.md | 1 + posts/2018-08-02-Rust-1.28.md | 1 + posts/2018-09-13-Rust-1.29.md | 1 + posts/2018-09-25-Rust-1.29.1.md | 1 + posts/2018-10-12-Rust-1.29.2.md | 1 + posts/2018-10-25-Rust-1.30.0.md | 1 + posts/2018-11-08-Rust-1.30.1.md | 1 + posts/2018-12-06-Rust-1.31-and-rust-2018.md | 1 + posts/2018-12-20-Rust-1.31.1.md | 1 + src/main.rs | 2 +- 45 files changed, 45 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0691a5444..7a5ea1f05 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ site static/styles/vendor.css static/styles/app.css static/styles/fonts.css +.idea \ No newline at end of file diff --git a/posts/2015-05-15-Rust-1.0.md b/posts/2015-05-15-Rust-1.0.md index 4601d2f93..609f5faf1 100644 --- a/posts/2015-05-15-Rust-1.0.md +++ b/posts/2015-05-15-Rust-1.0.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.0" author: The Rust Core Team +release: true --- Today we are very proud to announce the diff --git a/posts/2015-06-25-Rust-1.1.md b/posts/2015-06-25-Rust-1.1.md index 721849b49..3e49de9ae 100644 --- a/posts/2015-06-25-Rust-1.1.md +++ b/posts/2015-06-25-Rust-1.1.md @@ -2,6 +2,7 @@ layout: post title: "Rust 1.1 stable, the Community Subteam, and RustCamp" author: The Rust Core Team +release: true --- We're happy to announce the completion of the first release cycle after Rust diff --git a/posts/2015-08-06-Rust-1.2.md b/posts/2015-08-06-Rust-1.2.md index 3132bec74..e9e0e0d1f 100644 --- a/posts/2015-08-06-Rust-1.2.md +++ b/posts/2015-08-06-Rust-1.2.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.2" author: The Rust Core Team +release: true --- Today marks the [completion][install] of the Rust 1.2 stable and 1.3 beta diff --git a/posts/2015-09-17-Rust-1.3.md b/posts/2015-09-17-Rust-1.3.md index 43208fd05..e0df1bb1c 100644 --- a/posts/2015-09-17-Rust-1.3.md +++ b/posts/2015-09-17-Rust-1.3.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.3" author: The Rust Core Team +release: true --- The gear keeps turning: we're releasing Rust 1.3 stable today! As always, read diff --git a/posts/2015-10-29-Rust-1.4.md b/posts/2015-10-29-Rust-1.4.md index bb93615ec..022332ff3 100644 --- a/posts/2015-10-29-Rust-1.4.md +++ b/posts/2015-10-29-Rust-1.4.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.4" author: The Rust Core Team +release: true --- Choo choo! The trains have kept rolling, and today, we’re happy to announce the diff --git a/posts/2015-12-10-Rust-1.5.md b/posts/2015-12-10-Rust-1.5.md index ab05ce2e7..95c8dff61 100644 --- a/posts/2015-12-10-Rust-1.5.md +++ b/posts/2015-12-10-Rust-1.5.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.5" author: The Rust Core Team +release: true --- Today we're releasing [Rust 1.5 stable][install]. This post gives the diff --git a/posts/2016-01-21-Rust-1.6.md b/posts/2016-01-21-Rust-1.6.md index 4e117bd4b..5542ad812 100644 --- a/posts/2016-01-21-Rust-1.6.md +++ b/posts/2016-01-21-Rust-1.6.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.6" author: The Rust Core Team +release: true --- Hello 2016! We’re happy to announce the first Rust release of the year, 1.6. diff --git a/posts/2016-03-02-Rust-1.7.md b/posts/2016-03-02-Rust-1.7.md index 12fb3001b..b416e3ace 100644 --- a/posts/2016-03-02-Rust-1.7.md +++ b/posts/2016-03-02-Rust-1.7.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.7" author: The Rust Core Team +release: true --- The Rust team is happy to announce the latest version of Rust, 1.7. Rust is a diff --git a/posts/2016-04-14-Rust-1.8.md b/posts/2016-04-14-Rust-1.8.md index 9056c0c4f..08e1fce51 100644 --- a/posts/2016-04-14-Rust-1.8.md +++ b/posts/2016-04-14-Rust-1.8.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.8" author: The Rust Core Team +release: true --- The Rust team is happy to announce the latest version of Rust, 1.8. Rust is a diff --git a/posts/2016-05-26-Rust-1.9.md b/posts/2016-05-26-Rust-1.9.md index b89c41b4b..8a8e71871 100644 --- a/posts/2016-05-26-Rust-1.9.md +++ b/posts/2016-05-26-Rust-1.9.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.9" author: The Rust Core Team +release: true --- The Rust team is happy to announce the latest version of Rust, 1.9. Rust is a diff --git a/posts/2016-07-07-Rust-1.10.md b/posts/2016-07-07-Rust-1.10.md index 8195033e2..bc59a6065 100644 --- a/posts/2016-07-07-Rust-1.10.md +++ b/posts/2016-07-07-Rust-1.10.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.10" author: The Rust Core Team +release: true --- The Rust team is happy to announce the latest version of Rust, 1.10. Rust is a diff --git a/posts/2016-08-18-Rust-1.11.md b/posts/2016-08-18-Rust-1.11.md index 7d5d0abc4..10a94b7b4 100644 --- a/posts/2016-08-18-Rust-1.11.md +++ b/posts/2016-08-18-Rust-1.11.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.11" author: The Rust Core Team +release: true --- The Rust team is happy to announce the latest version of Rust, 1.11. Rust is a diff --git a/posts/2016-09-29-Rust-1.12.md b/posts/2016-09-29-Rust-1.12.md index 144b6703a..e22968199 100644 --- a/posts/2016-09-29-Rust-1.12.md +++ b/posts/2016-09-29-Rust-1.12.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.12" author: The Rust Core Team +release: true --- The Rust team is happy to announce the latest version of Rust, 1.12. Rust is diff --git a/posts/2016-10-20-Rust-1.12.1.md b/posts/2016-10-20-Rust-1.12.1.md index 54864bc93..e8b981c99 100644 --- a/posts/2016-10-20-Rust-1.12.1.md +++ b/posts/2016-10-20-Rust-1.12.1.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.12.1" author: The Rust Core Team +release: true --- The Rust team is happy to announce the latest version of Rust, 1.12.1. Rust is a diff --git a/posts/2016-11-10-Rust-1.13.md b/posts/2016-11-10-Rust-1.13.md index e151ea758..8f31af310 100644 --- a/posts/2016-11-10-Rust-1.13.md +++ b/posts/2016-11-10-Rust-1.13.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.13" author: The Rust Core Team +release: true --- The Rust team is happy to announce the latest version of Rust, 1.13.0. Rust is diff --git a/posts/2016-12-22-Rust-1.14.md b/posts/2016-12-22-Rust-1.14.md index 6989cf05d..81d831beb 100644 --- a/posts/2016-12-22-Rust-1.14.md +++ b/posts/2016-12-22-Rust-1.14.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.14" author: The Rust Core Team +release: true --- The Rust team is happy to announce the latest version of Rust, 1.14.0. Rust is a diff --git a/posts/2017-02-02-Rust-1.15.md b/posts/2017-02-02-Rust-1.15.md index 84d558d60..d0ad2df3b 100644 --- a/posts/2017-02-02-Rust-1.15.md +++ b/posts/2017-02-02-Rust-1.15.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.15" author: The Rust Core Team +release: true --- The Rust team is happy to announce the latest version of Rust, 1.15.0. Rust is a diff --git a/posts/2017-02-09-Rust-1.15.1.md b/posts/2017-02-09-Rust-1.15.1.md index 2c8c4613d..7439fe824 100644 --- a/posts/2017-02-09-Rust-1.15.1.md +++ b/posts/2017-02-09-Rust-1.15.1.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.15.1" author: The Rust Core Team +release: true --- The Rust team is happy to announce the latest version of Rust, 1.15.1. Rust is a diff --git a/posts/2017-03-16-Rust-1.16.md b/posts/2017-03-16-Rust-1.16.md index 8461a5578..a5cb6b7e2 100644 --- a/posts/2017-03-16-Rust-1.16.md +++ b/posts/2017-03-16-Rust-1.16.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.16" author: The Rust Core Team +release: true --- The Rust team is happy to announce the latest version of Rust, 1.16.0. Rust is a diff --git a/posts/2017-04-27-Rust-1.17.md b/posts/2017-04-27-Rust-1.17.md index d84d8efd2..965d45fdc 100644 --- a/posts/2017-04-27-Rust-1.17.md +++ b/posts/2017-04-27-Rust-1.17.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.17" author: The Rust Core Team +release: true --- The Rust team is happy to announce the latest version of Rust, 1.17.0. Rust is a diff --git a/posts/2017-06-08-Rust-1.18.md b/posts/2017-06-08-Rust-1.18.md index 6353d75bc..423d4af5a 100644 --- a/posts/2017-06-08-Rust-1.18.md +++ b/posts/2017-06-08-Rust-1.18.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.18" author: The Rust Core Team +release: true --- The Rust team is happy to announce the latest version of Rust, 1.18.0. Rust is a diff --git a/posts/2017-07-20-Rust-1.19.md b/posts/2017-07-20-Rust-1.19.md index 981863a80..378808cb5 100644 --- a/posts/2017-07-20-Rust-1.19.md +++ b/posts/2017-07-20-Rust-1.19.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.19" author: The Rust Core Team +release: true --- The Rust team is happy to announce the latest version of Rust, 1.19.0. Rust is a diff --git a/posts/2017-08-31-Rust-1.20.md b/posts/2017-08-31-Rust-1.20.md index 5a6608d01..c2b886fcf 100644 --- a/posts/2017-08-31-Rust-1.20.md +++ b/posts/2017-08-31-Rust-1.20.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.20" author: The Rust Core Team +release: true --- The Rust team is happy to announce the latest version of Rust, 1.20.0. Rust diff --git a/posts/2017-10-12-Rust-1.21.md b/posts/2017-10-12-Rust-1.21.md index 0289da69b..c4650ac69 100644 --- a/posts/2017-10-12-Rust-1.21.md +++ b/posts/2017-10-12-Rust-1.21.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.21" author: The Rust Core Team +release: true --- The Rust team is happy to announce the latest version of Rust, 1.21.0. Rust diff --git a/posts/2017-11-22-Rust-1.22.md b/posts/2017-11-22-Rust-1.22.md index 9c83e9312..59119824b 100644 --- a/posts/2017-11-22-Rust-1.22.md +++ b/posts/2017-11-22-Rust-1.22.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.22 (and 1.22.1)" author: The Rust Core Team +release: true --- The Rust team is happy to announce *two* new versions of Rust, 1.22.0 and diff --git a/posts/2018-01-04-Rust-1.23.md b/posts/2018-01-04-Rust-1.23.md index 52bb3fff1..a40293f53 100644 --- a/posts/2018-01-04-Rust-1.23.md +++ b/posts/2018-01-04-Rust-1.23.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.23" author: The Rust Core Team +release: true --- The Rust team is happy to announce a new version of Rust, 1.23.0. Rust is a diff --git a/posts/2018-02-15-Rust-1.24.md b/posts/2018-02-15-Rust-1.24.md index f561b57ff..a15b69ee8 100644 --- a/posts/2018-02-15-Rust-1.24.md +++ b/posts/2018-02-15-Rust-1.24.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.24" author: The Rust Core Team +release: true --- The Rust team is happy to announce a new version of Rust, 1.24.0. Rust is a diff --git a/posts/2018-03-01-Rust-1.24.1.md b/posts/2018-03-01-Rust-1.24.1.md index e71bbd2fa..59fb9ce78 100644 --- a/posts/2018-03-01-Rust-1.24.1.md +++ b/posts/2018-03-01-Rust-1.24.1.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.24.1" author: The Rust Core Team +release: true --- The Rust team is happy to announce a new version of Rust, 1.24.1. Rust is a diff --git a/posts/2018-03-29-Rust-1.25.md b/posts/2018-03-29-Rust-1.25.md index 912b01b11..5a1c3757e 100644 --- a/posts/2018-03-29-Rust-1.25.md +++ b/posts/2018-03-29-Rust-1.25.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.25" author: The Rust Core Team +release: true --- The Rust team is happy to announce a new version of Rust, 1.25.0. Rust is a diff --git a/posts/2018-05-10-Rust-1.26.md b/posts/2018-05-10-Rust-1.26.md index 9110ff8d5..df574b80f 100644 --- a/posts/2018-05-10-Rust-1.26.md +++ b/posts/2018-05-10-Rust-1.26.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.26" author: The Rust Core Team +release: true --- The Rust team is happy to announce a new version of Rust, 1.26.0. Rust is a diff --git a/posts/2018-05-29-Rust-1.26.1.md b/posts/2018-05-29-Rust-1.26.1.md index 9a516b5ee..c09f6b339 100644 --- a/posts/2018-05-29-Rust-1.26.1.md +++ b/posts/2018-05-29-Rust-1.26.1.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.26.1" author: The Rust Core Team +release: true --- The Rust team is happy to announce a new version of Rust, 1.26.1. Rust is a diff --git a/posts/2018-06-05-Rust-1.26.2.md b/posts/2018-06-05-Rust-1.26.2.md index 9e196cb3c..a9f069038 100644 --- a/posts/2018-06-05-Rust-1.26.2.md +++ b/posts/2018-06-05-Rust-1.26.2.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.26.2" author: The Rust Core Team +release: true --- The Rust team is happy to announce a new version of Rust, 1.26.2. Rust is a diff --git a/posts/2018-06-21-Rust-1.27.md b/posts/2018-06-21-Rust-1.27.md index 339141fac..6582411c1 100644 --- a/posts/2018-06-21-Rust-1.27.md +++ b/posts/2018-06-21-Rust-1.27.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.27" author: The Rust Core Team +release: true --- The Rust team is happy to announce a new version of Rust, 1.27.0. Rust is a diff --git a/posts/2018-07-10-Rust-1.27.1.md b/posts/2018-07-10-Rust-1.27.1.md index 987e134d2..5fc8d5741 100644 --- a/posts/2018-07-10-Rust-1.27.1.md +++ b/posts/2018-07-10-Rust-1.27.1.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.27.1" author: The Rust Core Team +release: true --- The Rust team is happy to announce a new version of Rust, 1.27.1. Rust is a diff --git a/posts/2018-07-20-Rust-1.27.2.md b/posts/2018-07-20-Rust-1.27.2.md index e2b957a28..aa6ff87c6 100644 --- a/posts/2018-07-20-Rust-1.27.2.md +++ b/posts/2018-07-20-Rust-1.27.2.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.27.2" author: The Rust Core Team +release: true --- The Rust team is happy to announce a new version of Rust, 1.27.2. Rust is a diff --git a/posts/2018-08-02-Rust-1.28.md b/posts/2018-08-02-Rust-1.28.md index 038bda3e5..3a607f08f 100644 --- a/posts/2018-08-02-Rust-1.28.md +++ b/posts/2018-08-02-Rust-1.28.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.28" author: The Rust Core Team +release: true --- The Rust team is happy to announce a new version of Rust, 1.28.0. Rust is a diff --git a/posts/2018-09-13-Rust-1.29.md b/posts/2018-09-13-Rust-1.29.md index 1c2a58386..e968a04f9 100644 --- a/posts/2018-09-13-Rust-1.29.md +++ b/posts/2018-09-13-Rust-1.29.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.29" author: The Rust Core Team +release: true --- The Rust team is happy to announce a new version of Rust, 1.29.0. Rust is a diff --git a/posts/2018-09-25-Rust-1.29.1.md b/posts/2018-09-25-Rust-1.29.1.md index 5ee4fc621..4480d4580 100644 --- a/posts/2018-09-25-Rust-1.29.1.md +++ b/posts/2018-09-25-Rust-1.29.1.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.29.1" author: The Rust Core Team +release: true --- The Rust team is happy to announce a new version of Rust, 1.29.1. Rust is a diff --git a/posts/2018-10-12-Rust-1.29.2.md b/posts/2018-10-12-Rust-1.29.2.md index d8219abeb..c7f1c560c 100644 --- a/posts/2018-10-12-Rust-1.29.2.md +++ b/posts/2018-10-12-Rust-1.29.2.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.29.2" author: The Rust Release Team +release: true --- The Rust team is happy to announce a new version of Rust, 1.29.2. Rust is a diff --git a/posts/2018-10-25-Rust-1.30.0.md b/posts/2018-10-25-Rust-1.30.0.md index 7fa1885b6..bc0055ece 100644 --- a/posts/2018-10-25-Rust-1.30.0.md +++ b/posts/2018-10-25-Rust-1.30.0.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.30" author: The Rust Core Team +release: true --- The Rust team is happy to announce a new version of Rust, 1.30.0. Rust is a diff --git a/posts/2018-11-08-Rust-1.30.1.md b/posts/2018-11-08-Rust-1.30.1.md index ae5ff7945..ded7e3bfa 100644 --- a/posts/2018-11-08-Rust-1.30.1.md +++ b/posts/2018-11-08-Rust-1.30.1.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.30.1" author: The Rust Release Team +release: true --- The Rust team is happy to announce a new version of Rust, 1.30.1. Rust is a diff --git a/posts/2018-12-06-Rust-1.31-and-rust-2018.md b/posts/2018-12-06-Rust-1.31-and-rust-2018.md index afc478fd0..ac65bd5be 100644 --- a/posts/2018-12-06-Rust-1.31-and-rust-2018.md +++ b/posts/2018-12-06-Rust-1.31-and-rust-2018.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.31 and Rust 2018" author: The Rust Core Team +release: true --- The Rust team is happy to announce a new version of Rust, 1.31.0, and "Rust diff --git a/posts/2018-12-20-Rust-1.31.1.md b/posts/2018-12-20-Rust-1.31.1.md index 70a999f20..638b5fa47 100644 --- a/posts/2018-12-20-Rust-1.31.1.md +++ b/posts/2018-12-20-Rust-1.31.1.md @@ -2,6 +2,7 @@ layout: post title: "Announcing Rust 1.31.1" author: The Rust Release Team +release: true --- The Rust team is happy to announce a new version of Rust, 1.31.1. Rust is a diff --git a/src/main.rs b/src/main.rs index 51f89292b..f5e89a2c9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -185,7 +185,7 @@ impl<'a> Generator<'a> { }) .collect(); let data = Releases { - releases: releases, + releases, feed_updated: chrono::Utc::now().with_nanosecond(0).unwrap().to_rfc3339(), }; fs::write( From 161dc473f31adc47c4610dd1b9d43407ca483477 Mon Sep 17 00:00:00 2001 From: Folyd Date: Sun, 13 Dec 2020 21:18:10 +0800 Subject: [PATCH 2/2] Revert editor-specific files .gitignore --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 7a5ea1f05..0691a5444 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,3 @@ site static/styles/vendor.css static/styles/app.css static/styles/fonts.css -.idea \ No newline at end of file