This is an automated email from the ASF dual-hosted git repository.

omalley pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/master by this push:
     new 3978ea2  Add ORC 1.5.9 release to site.
3978ea2 is described below

commit 3978ea2a9ee960f3c677c1c40d0f69db29b4bce9
Author: Owen O'Malley <[email protected]>
AuthorDate: Fri Jan 31 10:03:47 2020 -0800

    Add ORC 1.5.9 release to site.
    
    Signed-off-by: Owen O'Malley <[email protected]>
---
 site/README.md                      |  2 +-
 site/_data/releases.yml             | 12 ++++++++++--
 site/_posts/2020-01-30-ORC-1.5.9.md | 15 +++++++++++++++
 site/develop/make-release.md        | 12 +++++++-----
 4 files changed, 33 insertions(+), 8 deletions(-)

diff --git a/site/README.md b/site/README.md
index 53b155d..3929fcf 100644
--- a/site/README.md
+++ b/site/README.md
@@ -7,7 +7,7 @@ the site is to use docker to use a standard environment.
 ## Setup
 
 1. `cd site`
-2. `git clone https://gitbox.apache.org/repos/asf/orc.git -b asf-site target`
+2. `git clone [email protected]:apache/orc.git -b asf-site target`
 
 ## Run the docker container with the preview of the site.
 
diff --git a/site/_data/releases.yml b/site/_data/releases.yml
index f2d36c0..8564287 100644
--- a/site/_data/releases.yml
+++ b/site/_data/releases.yml
@@ -32,9 +32,17 @@
     ORC-569: The first index entry may have empty positions
     ORC-571: ArrayIndexOutOfBoundsException in StripePlanner.readRowIndex
 
+1.5.9:
+  date: 2020-01-30
+  state: stable
+  tar: orc-1.5.9.tar.gz
+  signed-by: Owen O’Malley (3D0C92B9)
+  sha256: 75c534555df8a93284e1f4567e7404da12fecb86282e974c678e6ec822c8a504
+  known-issues:
+
 1.5.8:
   date: 2019-11-24
-  state: stable
+  state: archived
   tar: orc-1.5.8.tar.gz
   signed-by: Owen O’Malley (3D0C92B9)
   sha256: 2caf689132168d349917daee4c4d8025e8273434a72cdd4f5abe32c40281f859
@@ -42,7 +50,7 @@
 
 1.5.7:
   date: 2019-10-26
-  state: stable
+  state: archived
   tar: orc-1.5.7.tar.gz
   signed-by: Owen O’Malley (3D0C92B9)
   sha256: 0fbc5c6da16be89e5429376c0f75e64ddd5ab9425eb1d43d16c0d25281dde5b7
diff --git a/site/_posts/2020-01-30-ORC-1.5.9.md 
b/site/_posts/2020-01-30-ORC-1.5.9.md
new file mode 100644
index 0000000..d35b17c
--- /dev/null
+++ b/site/_posts/2020-01-30-ORC-1.5.9.md
@@ -0,0 +1,15 @@
+---
+layout: news_item
+title: "ORC 1.5.9 Released"
+date: "2020-01-30 16:00:00 -0800"
+author: omalley
+version: 1.5.9
+categories: [release]
+---
+
+The ORC team is excited to announce the release of ORC v1.5.9.
+
+{% assign releaseName = "1.5.9" %}
+{% include release_description.md %}
+{% include orc_1.5.md %}
+{% include known_issues.md %}
diff --git a/site/develop/make-release.md b/site/develop/make-release.md
index 8cb3142..67d623c 100644
--- a/site/develop/make-release.md
+++ b/site/develop/make-release.md
@@ -91,7 +91,7 @@ Publish the artifacts to Maven central staging. Make sure to 
have this [setup](h
 Publish from the staging area:
 
 * login to [Maven 
staging](https://repository.apache.org/index.html#stagingRepositories)
-* find your staging repository (search for org.apache.org)
+* find your staging repository (search for org.apache.orc)
 * close it
 * release it
 
@@ -140,7 +140,6 @@ Set up site/target to be a separate git workspace that 
tracks the asf-site branc
 % git fetch origin
 % git checkout asf-site
 % cd ..
-% bundle install
 ~~~
 * edit site/_data/releases.yml to add new release
    * update the state for the releases to match the changes in the Apache dist
@@ -148,10 +147,13 @@ Set up site/target to be a separate git workspace that 
tracks the asf-site branc
       * stable = other release still in dist
       * archived = removed from dist
 * create a new file _posts/YYYY-MM-DD-ORC-X.Y.Z.md for the news section
-* Run "bundle exec jekyll serve"
+* Run "docker build -t orc-site ."
+* Run "docker run -d -p 4000:4000 orc-site"
 * Check the website on http://0.0.0.0:4000/
-* If it looks good, use git add (from within site directory) to add the new 
files and commit to master with a message of "update site for X.Y.Z".
-
+* If it looks good, copy the results out of docker:
+   * Find the name of the container using "docker ps".
+   * Run "docker cp $CONTAINER:/home/orc/site/target ."
+   * Run "docker stop $CONTAINER"
 ~~~
 % pwd
 <path-to-master-src>/site

Reply via email to