You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by le...@apache.org on 2021/01/07 01:39:15 UTC

[datasketches-website] branch master updated: Update ToC with Process for Releases

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

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/datasketches-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 8518311  Update ToC with Process for Releases
8518311 is described below

commit 8518311caa029da4a53e12e2f1cc4e90497b6d59
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Wed Jan 6 17:38:22 2021 -0800

    Update ToC with Process for Releases
---
 _includes/toc.html                                |   2 +
 docs/Community/ProcessForCppComponentReleases.md  | 185 +++++++++++++++++
 docs/Community/ProcessForJavaComponentReleases.md | 231 ++++++++++++++++++++++
 src/main/resources/docgen/toc.json                |   3 +
 4 files changed, 421 insertions(+)

diff --git a/_includes/toc.html b/_includes/toc.html
index 44df9c0..3db16cd 100644
--- a/_includes/toc.html
+++ b/_includes/toc.html
@@ -298,6 +298,8 @@
     <li><a href="{{site.docs_dir}}/Community/index.html">•Community</a></li>
     <li><a href="{{site.docs_dir}}/Community/Downloads.html">•Downloads</a></li>
     <li><a href="{{site.docs_dir}}/Community/NewCommitterProcess.html">•New Committer Process</a></li>
+    <li><a href="{{site.docs_dir}}/Community/ProcessForCppComponentReleases.html">•Process For CPP Component Releases</a></li>
+    <li><a href="{{site.docs_dir}}/Community/ProcessForJavaComponentReleases.html">•Process For Java Component Releases</a></li>
     <li><a href="{{site.docs_dir}}/Community/Transitioning.html">•Transitioning from prior GitHub Site</a></li>
     <li><a href="{{site.docs_dir}}/Community/WhoUses.html">•Who Uses</a></li>
   </div>
diff --git a/docs/Community/ProcessForCppComponentReleases.md b/docs/Community/ProcessForCppComponentReleases.md
new file mode 100644
index 0000000..ef2ced2
--- /dev/null
+++ b/docs/Community/ProcessForCppComponentReleases.md
@@ -0,0 +1,185 @@
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+
+# Apache C++ Release Steps
+__NOTES:__
+
+* This process covers major and minor releases only. Bug-fix releases, which increment the third digit, are performed on a A.B.X branch and not on master, but otherwise is similar.
+* Some of these operations can be performed either on the Command-Line or in your IDE, whatever you prefer.
+
+## Preparation
+* Confirm correctness for
+    * LICENSE
+    * NOTICE -- check for copyright dates
+    * README.md
+    * .gitignore
+    * DISCLAIMER-WIP
+         
+* From Command Line or IDE:
+    * Run Unit tests
+    * Run Code Coverage > 90%
+    * Confirm that all __temporary__ branches are checked into master and/or deleted, both local and remote.
+    * Confirm any new bug fixes have corresponding tests
+
+* From Command Line at Component root:
+  * Confirm GPG is running (check this every time you open a new Terminal):
+      * $ env | grep GPG # you should see something like: GPG_TTY=/dev/ttys000
+      * To start GPG if GPG Agent is not running:
+          * $ eval $(gpg-agent --daemon)
+  * Confirm GitHub repository is current and git status is clean:
+      * $ git status
+          * "nothing to commit, working tree clean"
+  * At major version releases, search for deprecated code and remove at __Major Versions__ only.
+      * $ find . -name "*.?pp" -type f -print | xargs grep -i -n -s -A0 "deprecated"
+      * may need to ignore false positives in the pybind11 directory
+ 
+
+## Create Permanent Release Branch & Python Version Preparation
+* Assume target version = A.B.0
+* From IDE or Command Line: 
+    * Switch from master to new __Permanent Branch__: "A.B.X"
+    * Check setup.py "version=" line to A.B.X (remove -SNAPSHOT, do not change A or B)
+    * Commit the change. __DO NOT PUSH!__
+    * Create Annotated TAG: A.B.0-RC1 (or RCn)
+    * Write down the Git hash : example: 40c6f4f
+    * Now Push Branch  "A.B.X" with edited setup.py to origin
+    * __DO NOT MERGE THIS PERMANENT BRANCH INTO MASTER__
+* From IDE or Command-line: 
+    * Do explicit push of tags on branch "A.B.X" to origin:
+        * $ git push origin --tags
+* From a web browser at origin web site: github.com/apache/datasketches-\<component\>
+    * Select the A.B.X branch
+    * Confirm that the tag: A.B.0-RC1 exists and that the tag is on the latest commit and with the correct Git hash.
+    * __DO NOT CREATE PR OR MERGE THIS PERMANENT BRANCH INTO MASTER__
+* From IDE or Command Line:
+    * Confirm that the tag A.B.0-RC1 and the branch A.B.X, and HEAD coincide with the correct Git hash.
+    * Confirm that there are no unstaged or staged changes.
+    * Return to master branch
+    * Edit master setup.py to A'.B'.0-SNAPSHOT where A' or B' will be incremented by 1. (Bug fix releases will change the 3rd digit)
+    * Commit and Push this change to origin/master with the comment "Release Process: Change setup.py version to A'.B'.0-SNAPSHOT."
+    * Return to release branch A.B.X
+    * You may minimize your IDE, pointing at the release branch.
+    
+## Create and/or Checkout Local *dist/dev* directories on your system
+* If you have not already, on your system create the two directory structures that mirror the dist.apache.org/repos/ directories:
+    * mkdir dist/dev/datasketches/
+    * mkdir dist/release/datasketches/
+* Checkout both "dev" and "release" directories 
+    * Open a terminal in the dist/dev/datasketches directory and do a checkout:
+        * svn co https://dist.apache.org/repos/dist/dev/datasketches/ .      #Note the DOT
+        * svn status    # make sure it is clean
+    * Open a terminal in the dist/release/datasketches directory and do a checkout:
+        * svn co https://dist.apache.org/repos/dist/release/datasketches/ .  #Note the DOT
+        * svn status    # make sure it is clean
+
+## Create the Candidate Apache Release Distribution on *dist/dev*
+### Create primary zip files & signatures
+* You will need the following arguments:
+  * Absolute path of target project.basedir on your system
+  * Artifact name : datasketches-\<component\> where component is e.g., cpp
+  * GitHub Tag: A.B.0-RC1 (or RCn)
+* Start a new terminal in the above dist/dev/datasketches/scripts directory on your system: 
+  * Confirm GPG is running: $ env | grep GPG
+      * If not: $ eval $(gpg-agent --daemon)
+  * Run something like:
+    * $ ./bashDeployToDist.sh /Users/\<name\>/dev/git/Apache/datasketches-\<component\> datasketches-\<component\> A.B.0-RC1
+    * Follow the instructions.
+    * NOTE: if you get the error "gpg: signing failed: No pinentry":
+        * open .gnupg/gpg-agent.conf
+        * change to: pinentry-program /usr/local/bin/pinentry-tty
+        * reload the gpg agent in the terminal: gpg-connect-agent reloadagent /bye   
+        * restart the ./bashDeployToDist script
+    * Close the terminal
+* Check and grab the web URL ~ https://dist.apache.org/repos/dist/dev/datasketches/\<component\>/A.B.0-RC1/
+    * There should be 3 files: \*-src.zip, \*-src.zip.asc, \*-src.zip.sha512 
+
+### Create Copy of External Artifact Distributions
+* For Java, we need to place copies of the artifact jars deployed to Nexus under a "maven" directory.
+* For external artifacts of Python or Docker it will be something else.
+* For example see <https://dist.apache.org/repos/dist/release/datasketches/java/1.3.0-incubating/>
+* These must be signed with GPG (.asc) and SHA512 (.sha512)
+* I will create a script for these artifacts someday :)
+
+## Prepare & Send [VOTE] Letter to dev@
+* See VoteTemplates directory for a recent example
+* If vote is not successful, fix the problem and repeat above steps.
+* After a successful vote return to __this point__ and continue ...
+
+## Prepare & Send [VOTE-RESULT] Letter to dev@
+* See VoteTemplates directory for a recent example
+* Declare that the vote is closed.
+* Summarize PPMC vote results
+
+## Move files from dev/staging to release
+### Move primary zip files from *dist/dev* to *dist/release*
+* In local dist/__dev__/datasketches/
+    * Open Terminal #1 
+        * Perform SVN Checkout:
+            * $ svn co https://dist.apache.org/repos/dist/dev/datasketches/ .  #note dot at end
+* In local dist/__release__/datasketches/
+    * Open Terminal #2
+        * Perform SVN Checkout:
+            * $ svn co https://dist.apache.org/repos/dist/release/datasketches/ . #note dot at end
+        * Create new version directory under appropriate component directory:
+            * $ mkdir -p \<component\>/A.B.0
+    * Using local file system copy files 
+        * From  ... /dist/dev/datasketches/\<component\>/version-RCnn/*
+        * To    ... /dist/release/datasketches/\<component\>/version (no RCnn)/*
+    * Using Terminal #2 at ... /dist/release/datasketches directory:
+        * svn add . --force
+        * svn ci -m "Release A.B.0"
+        * Remove the prior release...
+        * svn remove \<component\>/X.Y.0
+        * svn ci -m "Remove Prior release"
+        * svn status # should be empty
+    * Using local file system
+        * Delete the prior X.Y.0 directory  
+
+### Move External Artifact Distributions *dist/dev* to *dist/release*
+
+## Create & Document Release Tag on GitHub
+* Open your IDE and switch to the recently created Release Branch A.B.X
+* Find the recently created A.B.0-RCn tag in that branch
+* At that same GitHub ID hash, create a new tag A.B.0 (without the RCn).
+* From the Command Line: Push the new tag to origin:
+    * $ git push origin --tags
+* On the GitHub component site document the release 
+
+## Update Website Downloads.md "Latest Source Zip Files" Table
+* This script assumes that the remote .../dist/release/datasketches/... directories are up-to-date with no old releases.  
+* Start a new terminal in the ../dist/dev/datasketches/scripts directory on your system:
+* Make sure you local website directory is pointing to master and up-to-date. 
+* Run the following with the argument specifying the location of your local website directory:
+    * $ ./createDownloadsInclude.sh /Users/\<name\>/ ... /datasketches-website
+* When this is done, be sure to commit the changes to the website.
+
+## Update Javadocs (or Equivalent) on Website
+
+## Update Website Documentation (if new functionality)
+
+## Prepare Announce Letter to dev@
+* ASF requests that you wait 24 hours to publish Announce letter to allow the propagation to mirrors.
+* Use recent template
+* Summarize vote results
+
+## Update These Instructions
+* If you have updated this file or any of the scripts, please check it in using SVN using your local dist/dev directory copy:
+    * $ svn status
+    * $ svn add . --force  # if adding a file for the first time
+    * $ svn ci -m "update Release Steps" 
diff --git a/docs/Community/ProcessForJavaComponentReleases.md b/docs/Community/ProcessForJavaComponentReleases.md
new file mode 100644
index 0000000..23fce8c
--- /dev/null
+++ b/docs/Community/ProcessForJavaComponentReleases.md
@@ -0,0 +1,231 @@
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+
+# Process For Java Component Releases 
+__NOTES:__
+
+* This process covers major and minor releases only. Bug-fix releases, which increment the third digit, are performed on a A.B.X branch and not on master, but otherwise are similar.
+* Some of these operations can be performed either on the Command-Line or in your IDE, whatever you prefer.
+
+## Preparation
+* Confirm correctness for
+    * LICENSE
+    * NOTICE -- check for copyright dates
+    * README.md
+    * .travis.yml
+    * .gitignore
+    * pom.xml
+         
+* From Command Line or IDE:
+    * Run Unit tests
+    * Run Code Coverage > 90%
+    * Run SpotBugs checks (is it properly configured?)
+    * Run Checkstyle (is it properly configured?)
+    * Confirm that all __temporary__ branches are checked into master and/or deleted, both local and remote.
+    * Confirm any new bug fixes have corresponding tests
+
+* From Command Line at Component root:
+  * Confirm GPG is running (check this every time you open a new Terminal):
+      * $ env | grep GPG # you should see something like: GPG_TTY=/dev/ttys000
+      * To start GPG if GPG Agent is not running:
+          * $ eval $(gpg-agent --daemon)
+  * Confirm GitHub repository is current and git status is clean:
+      * $ git status
+          * "nothing to commit, working tree clean"
+  * At major version releases, search for deprecated code and remove at __Major Versions__ only.
+      * $ find . -name "*.java" -type f -print | xargs grep -i -n -s -A0 "deprecated"
+  * Check Maven Versions:
+      * $ mvn versions:display-plugin-updates
+  * Maven Tests:
+      * $ mvn apache-rat:check
+      * $ mvn clean test
+      * $ mvn clean test -P strict
+      * $ mvn clean javadoc:javadoc
+      * $ mvn clean install -DskipTests=true
+      * Check that the /target/ directory has 5 jars: 
+          * -javadoc.jar
+          * -sources.jar
+          * -test-sources.jar
+          * -tests.jar
+          * -.jar
+      * Check your local Maven repository
+          * _~/.m2/repository/org/apache/datasketches/datasketches-\<component\>/A.B.0-SNAPSHOT/_ 
+          * It should have 5 new jars and a .pom file. 
+ 
+
+## Create Permanent Release Branch & POM Version Preparation
+* Assume current master POM version = A.B.0-SNAPSHOT
+* From IDE or Command Line: 
+    * Switch from Master to new __Permanent Branch__: "A.B.X"
+    * Edit pom.xml version to A.B.0 (remove -SNAPSHOT, do not change A or B)
+    * Commit the change. __DO NOT PUSH!__
+    * Create Annotated TAG: A.B.0-RC1 (or RCn)
+    * Write down the Git hash : example: 40c6f4f
+    * Now Push Branch  "A.B.X" with edited pom.xml to origin
+    * __DO NOT MERGE THIS PERMANENT BRANCH INTO MASTER__
+* From IDE or Command-line: 
+    * Do explicit push of tags on branch "A.B.X" to origin:
+        * $ git push origin --tags
+* From a web browser at origin web site: github.com/apache/datasketches-\<component\>
+    * Select the A.B.X branch
+    * Confirm that the tag: A.B.0-RC1 exists and that the tag is on the latest commit and with the correct Git hash.
+    * __DO NOT CREATE PR OR MERGE THIS PERMANENT BRANCH INTO MASTER__
+* From IDE or Command Line:
+    * Confirm that the tag A.B.0-RC1 and the branch A.B.X, and HEAD coincide with the correct Git hash.
+    * Confirm that there are no unstaged or staged changes.
+    * Return to master branch
+    * Edit master pom.xml to A'.B'.0-SNAPSHOT where A' or B' will be incremented by 1. (Bug fix releases will change the 3rd digit)
+    * Commit and Push this change to origin/master with the comment "Release Process: Change pom version to A'.B'.0-SNAPSHOT."
+    * Return to release branch A.B.X
+    * You may minimize your IDE, pointing at the release branch.
+
+## Create and/or Checkout Local *dist/dev* directories on your system
+* If you have not already, on your system create the two directory structures that mirror the dist.apache.org/repos/ directories:
+    * mkdir dist/dev/datasketches/
+    * mkdir dist/release/datasketches/
+* Checkout both "dev" and "release" directories 
+    * Open a terminal in the dist/dev/datasketches directory and do a checkout:
+        * svn co https://dist.apache.org/repos/dist/dev/datasketches/ .      #Note the DOT
+        * svn status    # make sure it is clean
+    * Open a terminal in the dist/release/datasketches directory and do a checkout:
+        * svn co https://dist.apache.org/repos/dist/release/datasketches/ .  #Note the DOT
+        * svn status    # make sure it is clean
+
+## Create the Candidate Apache Release Distribution on *dist/dev*
+### Create primary zip files & signatures
+* You will need the following arguments:
+  * Absolute path of target project.basedir on your system
+  * Project.artifactId : datasketches-\<component\> where component is e.g., java, pig, hive,...
+  * GitHub Tag: A.B.0-RC1 (or RCn)
+  * Have your GPG passphrase handy -- you have only a few seconds to enter it!
+* Start a new terminal in the above dist/dev/datasketches/scripts directory on your system:
+  * Confirm GPG is running: $ env | grep GPG
+      * If not: $ eval $(gpg-agent --daemon)
+  * Run something like:
+    * $ ./bashDeployToDist.sh /Users/\<name\>/dev/git/Apache/datasketches-\<component\> datasketches-\<component\> A.B.0-RC1
+    * Follow the instructions.
+    * NOTE: if you get the error "gpg: signing failed: No pinentry":
+        * open .gnupg/gpg-agent.conf
+        * change to: pinentry-program /usr/local/bin/pinentry-tty
+        * reload the gpg agent in the terminal: gpg-connect-agent reloadagent /bye   
+        * restart the ./bashDeployToDist script
+    * Close the terminal
+* Check and grab the web URL ~ https://dist.apache.org/repos/dist/dev/datasketches/\<component\>/A.B.0-RC1/
+    * There should be 3 files: \*-src.zip, \*-src.zip.asc, \*-src.zip.sha512 
+
+### Java: Push Jars to Nexus (Maven Central) Staging
+* Return to original terminal at the project.basedir
+* If starting new terminal make sure GPG is running: $ env | grep GPG
+    * If not: $ eval $(gpg-agent --daemon) 
+* $ git status # make sure you are still on the release branch: _A.B.X
+* TRIAL-RUN:
+  * $ mvn clean install -Pnexus-jars -DskipTests=true
+      * Check that jars & pom have .asc signatures
+* DEPLOY
+  * $ mvn clean deploy -Pnexus-jars -DskipTests=true
+      * Login to [repository.apache.org](https://repository.apache.org/) / Staging Repositories for orgapachedatasketches-XXXX
+      * Click Content and search to the end.  Each jar & pom should have .asc, .md5, .sha1 signatures
+      * [CLOSE] the Staging Repository with a comment: "\<component\> A.B.0"
+      * Confirm its existance under Repositories/Staging web-site : org/apache/datasketches-\<component\>/A.B.0
+      * Grab its URL while there. You will need it for the Vote Letter.
+      * Check your local Maven repository
+          * _~/.m2/repository/org/apache/datasketches/datasketches-\<component\>/A.B.0/_ 
+          * It should have 5 new jars and a .pom file each with .asc, .md5, and .sha1 signatures
+
+### Create Copy of External Artifact Distributions
+* For Java, we need to place copies of the artifact jars deployed to Nexus under a "maven" directory.
+* For external artifacts of Python or Docker it will be something else.
+* For example see <https://dist.apache.org/repos/dist/release/datasketches/java/1.3.0-incubating/>
+* These must be signed with GPG (.asc) and SHA512 (.sha512)
+* I will create a script for these artifacts someday :)
+
+## Prepare & Send [VOTE] Letter to dev@
+* See VoteTemplates directory for a recent example
+* If vote is not successful, fix the problem and repeat above steps.
+* After a successful vote return to __this point__ and continue ...
+
+## Prepare & Send [VOTE-RESULT] Letter to dev@
+* See VoteTemplates directory for a recent example
+* Declare that the vote is closed.
+* Summarize vote results
+
+## Move files from dev/staging to release
+### Move primary zip files *dist/dev* to *dist/release*
+* In local dist/__dev__/datasketches/
+    * Open Terminal #1 
+        * Perform SVN Checkout:
+            * $ svn co https://dist.apache.org/repos/dist/dev/datasketches/ .  #note dot at end
+* In local dist/__release__/datasketches/
+    * Open Terminal #2
+        * Perform SVN Checkout:
+            * $ svn co https://dist.apache.org/repos/dist/release/datasketches/ . #note dot at end
+        * Create new version directory under appropriate component directory:
+            * $ mkdir -p \<component\>/A.B.0
+    * Using local file system copy files 
+        * From  ... /dist/dev/datasketches/\<component\>/version-RCnn/*
+        * To    ... /dist/release/datasketches/\<component\>/version (no RCnn)/*
+    * Using Terminal #2 at ... /dist/release/datasketches directory:
+        * svn add . --force
+        * svn ci -m "Release A.B.0"
+        * Remove the prior release...
+        * svn remove \<component\>/X.Y.0
+        * svn ci -m "Remove Prior release"
+        * svn status # should be empty
+    * Using local file system
+        * Delete the prior X.Y.0 directory  
+
+### Move External Artifact Distributions *dist/dev* to *dist/release*
+
+### Java: Release Jars on Nexus Staging
+* On Nexus [repository.apache.org](https://repository.apache.org/) click on Staging Repositories
+* Select "orgapachedatasketches-XXXX" (If more than one make sure you select the right one!)
+* At the top of the window, select "Release"
+* Confirm that the attributes have moved to the "Releases" repository under "Repositories"
+    * Browse to *Releases/org/apache/datasketches/... 
+
+## Create & Document Release Tag on GitHub
+* Open your IDE and switch to the recently created Release Branch A.B.X
+* Find the recently created A.B.0-RCn tag in that branch
+* At that same GitHub ID hash, create a new tag A.B.0 (without the RCn).
+* From the Command Line: Push the new tag to origin:
+    * $ git push origin --tags
+* On the GitHub component site document the release 
+
+## Update Website Downloads.md "Latest Source Zip Files" Table
+* This script assumes that the remote .../dist/release/datasketches/... directories are up-to-date with no old releases.  
+* Start a new terminal in the ../dist/dev/datasketches/scripts directory on your system:
+* Make sure you local website directory is pointing to master and up-to-date. 
+* Run the following with the argument specifying the location of your local website directory:
+    * $ ./createDownloadsInclude.sh /Users/\<name\>/ ... /datasketches-website
+* When this is done, be sure to commit the changes to the website.
+
+## Update Javadocs (or Equivalent) on Website
+
+## Update Website Documentation (if new functionality)
+
+## Prepare Announce Letter to dev@
+* ASF requests that you wait 24 hours to publish Announce letter to allow the propagation to mirrors.
+* Use recent template
+* Summarize vote results
+
+## Update These Instructions
+* If you have updated this file or any of the scripts, please check it in using SVN using your local dist/dev directory copy:
+    * $ svn status
+    * $ svn add . --force  # if adding a file for the first time
+    * $ svn ci -m "update Release Steps" 
diff --git a/src/main/resources/docgen/toc.json b/src/main/resources/docgen/toc.json
index 7dbc935..aa71fb3 100644
--- a/src/main/resources/docgen/toc.json
+++ b/src/main/resources/docgen/toc.json
@@ -254,7 +254,10 @@
         {"class":"Doc",  "desc" : "Community",                            "dir" : "Community", "file": "index" },
         {"class":"Doc",  "desc" : "Downloads",                            "dir" : "Community", "file": "Downloads"},
         {"class":"Doc",  "desc" : "New Committer Process",                "dir" : "Community", "file": "NewCommitterProcess"},
+        {"class":"Doc",  "desc" : "Process For CPP Component Releases",   "dir" : "Community", "file": "ProcessForCppComponentReleases"},
+        {"class":"Doc",  "desc" : "Process For Java Component Releases",  "dir" : "Community", "file": "ProcessForJavaComponentReleases"},
         {"class":"Doc",  "desc" : "Transitioning from prior GitHub Site", "dir" : "Community", "file": "Transitioning"},
+        
         {"class":"Doc",  "desc" : "Who Uses",                             "dir" : "Community", "file": "WhoUses" },
       ]
     },


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org