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/09/15 16:05:59 UTC

[datasketches-memory] branch master updated (a94680f -> b981fdf)

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

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


    from a94680f  Release Process: Change pom version to 2.1.0-SNAPSHOT.
     add 86de062  Remove SNAPSHOT version
     add 5e31179  Changes to fix circular jar dependencies.
     add f1c4b08  Restore memory dependency in resources module
     add e2a91f1  WIP - Add build script to compile JAR for single JVM
     add af890b3  Fix comment wrt optional input params
     add eba1f74  Move scripts to tools directory
     add 7628806  Rename Version to GitTag
     add cd8993d  Rename JavaHome to JDKHome
     add 8d5f520  Add attribution for version parsing
     add 36a8bc5  Add git properties to JAR Manifest.MF
     add dd3299b  Minor cleanup
     add cbaff45  Add checks to verify script packaged JAR
     add e21e0a5  Add documentation for standalone JAR script
     add ae0e42e  Remove additional line endings
     add cbc9b40  Merge pull request #148 from apache/single-build-script
     add 5a95162  Fix rat exclusion configuration
     add 90ec8b7  Use more specific img exclude for rat
     add a84241a  Merge pull request #149 from apache/fix-rat-configuration
     add e7fa941  Add git properties to output JARs by default
     add fdea411  Merge pull request #151 from apache/maven-jar-git-properties
     add fc89063  New version of Readme.
     add 44fd20f  Update tweaks
     add 38fdbf1  Minor changes to README.md
     add 3dcde8b  Rename usage-instructions to usage-examples
     add bd245ad  Temp remove README
     add 4f5635d  add back new README
     add 0a28828  Remove empty lines at end.
     add d002196  Merge pull request #152 from apache/UpdateReadme
     add cb28369  Update compile script with instructions in README
     add 49d187e  More documentation updates
     add 6b3a9bd  Remove javadoc from custom build script
     add fbab102  Invoke custom script in C/I
     add e296bc0  Remove testing branch
     add 68be0a8  Use bash shell for building custom script
     add 069ccda  Exclude lorem ipsum from rat check
     add b0fd160  Use the same output tmp location as assembly plugin
     add 139a258  Merge pull request #153 from apache/UpdateDocs
     add 71f84db  Add test-output to RAT exclusion list
     add e8f5b75  Skip git-commit-id maven plugin when no Git
     add 4526835  Update README.md
     add 8696972  Update README.md
     add acb861f  Update README.md
     add f2128e3  Update README.md
     add 2aabed3  Merge branch 2.0.X
     new b981fdf  Merge pull request #154 from apache/merge-2.0.X

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/maven.yml                        |   6 +
 README.md                                          | 155 +++++++++++++------
 datasketches-memory-java8-tests/pom.xml            |   2 +-
 .../memory/test/AllocateDirectMapMemoryTest.java   |   2 +-
 datasketches-memory-java9/pom.xml                  |   1 +
 .../memory/internal/NioBitsFields.java             |   2 +-
 datasketches-memory-resources/pom.xml              |   3 +
 datasketches-memory/pom.xml                        |  77 +++++-----
 docs/intellij.md                                   |   2 +-
 docs/maven-toolchains.md                           |   8 +-
 docs/maven.md                                      |   6 +-
 docs/module-system.md                              |   8 +-
 docs/{usage-instructions.md => usage-examples.md}  | 105 ++++++-------
 pom.xml                                            |  10 +-
 tools/scripts/CheckMemoryJar.java                  | 146 ++++++++++++++++++
 tools/scripts/LoremIpsum.txt                       |   3 +
 tools/scripts/compile-package-jar.sh               | 168 +++++++++++++++++++++
 tools/scripts/getGitProperties.sh                  |  66 ++++++++
 18 files changed, 612 insertions(+), 158 deletions(-)
 rename docs/{usage-instructions.md => usage-examples.md} (72%)
 create mode 100644 tools/scripts/CheckMemoryJar.java
 create mode 100644 tools/scripts/LoremIpsum.txt
 create mode 100755 tools/scripts/compile-package-jar.sh
 create mode 100755 tools/scripts/getGitProperties.sh

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


[datasketches-memory] 01/01: Merge pull request #154 from apache/merge-2.0.X

Posted by le...@apache.org.
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-memory.git

commit b981fdf9f1f1af3d18d41d7b79c4f62460c7156e
Merge: a94680f 2aabed3
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Wed Sep 15 09:05:51 2021 -0700

    Merge pull request #154 from apache/merge-2.0.X
    
    Merge 2.0.X

 .github/workflows/maven.yml                        |   6 +
 README.md                                          | 155 +++++++++++++------
 datasketches-memory-java8-tests/pom.xml            |   2 +-
 .../memory/test/AllocateDirectMapMemoryTest.java   |   2 +-
 datasketches-memory-java9/pom.xml                  |   1 +
 .../memory/internal/NioBitsFields.java             |   2 +-
 datasketches-memory-resources/pom.xml              |   3 +
 datasketches-memory/pom.xml                        |  77 +++++-----
 docs/intellij.md                                   |   2 +-
 docs/maven-toolchains.md                           |   8 +-
 docs/maven.md                                      |   6 +-
 docs/module-system.md                              |   8 +-
 docs/{usage-instructions.md => usage-examples.md}  | 105 ++++++-------
 pom.xml                                            |  10 +-
 tools/scripts/CheckMemoryJar.java                  | 146 ++++++++++++++++++
 tools/scripts/LoremIpsum.txt                       |   3 +
 tools/scripts/compile-package-jar.sh               | 168 +++++++++++++++++++++
 tools/scripts/getGitProperties.sh                  |  66 ++++++++
 18 files changed, 612 insertions(+), 158 deletions(-)

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