COMPRESS-323 ZipFile.getRawInputStream is public now
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 12c274d..518381e 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -44,6 +44,9 @@
   <body>
     <release version="1.11" date="not released, yet"
              description="Release 1.11">
+      <action issue="COMPRESS-323" type="add" date="2016-01-29">
+        ZipFile.getRawInputStream() is now part of the public API
+      </action>
       <action issue="COMPRESS-332" type="fix" date="2016-01-29">
         SnappyCompressorInputStream and
         FramedSnappyCompressorInputStream returned 0 at the end of the
diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/ZipFile.java b/src/main/java/org/apache/commons/compress/archivers/zip/ZipFile.java
index a7e3091..51fe771 100644
--- a/src/main/java/org/apache/commons/compress/archivers/zip/ZipFile.java
+++ b/src/main/java/org/apache/commons/compress/archivers/zip/ZipFile.java
@@ -357,7 +357,7 @@
      * @param ze The entry to get the stream for
      * @return The raw input stream containing (possibly) compressed data.
      */
-    private InputStream getRawInputStream(ZipArchiveEntry ze) {
+    public InputStream getRawInputStream(ZipArchiveEntry ze) {
         if (!(ze instanceof Entry)) {
             return null;
         }