You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2023/09/07 12:31:34 UTC

[tomcat-connectors] branch main updated (3ad622409 -> 963347be0)

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

markt pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat-connectors.git


    from 3ad622409 Skip the menu when processing news into text
     new b9af887a0 Updates paths
     new 1eb1858a3 Update CMCS version info
     new 963347be0 Update version for next development cycle

The 3 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:
 HOWTO-RELEASE.txt                       | 12 ++++++------
 native/configure.ac                     |  2 +-
 native/iis/README                       | 18 +++++++++---------
 tools/dist/README.html                  |  6 +++---
 tools/dist/binaries/windows/README.html |  2 +-
 xdocs/build.xml                         |  2 +-
 xdocs/miscellaneous/changelog.xml       |  2 ++
 7 files changed, 23 insertions(+), 21 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[tomcat-connectors] 01/03: Updates paths

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat-connectors.git

commit b9af887a077ddfa7243395cabdd8ab91e3955ef5
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Thu Sep 7 13:22:24 2023 +0100

    Updates paths
---
 native/iis/README | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/native/iis/README b/native/iis/README
index 2826220be..385aea3bd 100644
--- a/native/iis/README
+++ b/native/iis/README
@@ -51,22 +51,22 @@ Construct the binary distributions
   copy ..\LICENSE tomcat-connectors-%VER%-windows-i386-iis\
   copy ..\NOTICE tomcat-connectors-%VER%-windows-i386-iis\
   copy README tomcat-connectors-%VER%-windows-i386-iis\
-  copy Release_x86\isapi_redirect.dll tomcat-connectors-%VER%-windows-i386-iis\
+  copy x86_RELEASE\isapi_redirect.dll tomcat-connectors-%VER%-windows-i386-iis\
   mkdir tomcat-connectors-%VER%-windows-x86_64-iis
   copy ..\LICENSE tomcat-connectors-%VER%-windows-x86_64-iis\
   copy ..\NOTICE tomcat-connectors-%VER%-windows-x86_64-iis\
   copy README tomcat-connectors-%VER%-windows-x86_64-iis\
-  copy Release_amd64\isapi_redirect.dll tomcat-connectors-%VER%-windows-x86_64-iis\
+  copy x64_RELEASE\isapi_redirect.dll tomcat-connectors-%VER%-windows-x86_64-iis\
   mkdir tomcat-connectors-%VER%-windows-i386-symbols
   copy ..\LICENSE tomcat-connectors-%VER%-windows-i386-symbols
   copy ..\NOTICE tomcat-connectors-%VER%-windows-i386-symbols
   copy README tomcat-connectors-%VER%-windows-i386-symbols\
-  copy Release_x86\isapi_redirect.pdb tomcat-connectors-%VER%-windows-i386-symbols\
+  copy x86_RELEASE\isapi_redirect.pdb tomcat-connectors-%VER%-windows-i386-symbols\
   mkdir tomcat-connectors-%VER%-windows-x86_64-symbols
   copy ..\LICENSE tomcat-connectors-%VER%-windows-x86_64-symbols
   copy ..\NOTICE tomcat-connectors-%VER%-windows-x86_64-symbols
   copy README tomcat-connectors-%VER%-windows-x86_64-symbols\
-  copy Release_amd64\isapi_redirect.pdb tomcat-connectors-%VER%-windows-x86_64-symbols\
+  copy x64_RELEASE\isapi_redirect.pdb tomcat-connectors-%VER%-windows-x86_64-symbols\
   SET JAVA_HOME=C:\Program Files\Java\jdk1.7.0_71   
   set PATH=%PATH%;%JAVA_HOME%\bin
   cd tomcat-connectors-%VER%-windows-i386-iis


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[tomcat-connectors] 02/03: Update CMCS version info

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat-connectors.git

commit 1eb1858a3f7aed64963f2e2c40dfef1668501e00
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Thu Sep 7 13:24:04 2023 +0100

    Update CMCS version info
---
 native/iis/README | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/native/iis/README b/native/iis/README
index 385aea3bd..d01e18383 100644
--- a/native/iis/README
+++ b/native/iis/README
@@ -13,8 +13,8 @@ environment:
 
 - Git client
 - Mladen's Custom Microsoft Compiler Toolkit Compilation  
-    https://github.com/mturk/cmsc/releases/tag/v15.0.28
-    download cmsc-15.0_28-win7-x86_x64.zip and unzip in C:
+    https://github.com/mturk/cmsc/releases/tag/v15.0.47
+    download cmsc-15.0_47-win7-x86_x64.zip and unzip in C:
 
 
 BUILDING
@@ -28,12 +28,12 @@ Obtain the source code:
 
 Build  isapi_redirector.dll:
 
-    c:\cmsc-15.0_28\setenv.bat x86
+    c:\cmsc-15.0_47\setenv.bat x86
     nmake -f Makefile.vc
 
     open new cmd.exe
 
-    c:\cmsc-15.0_28\setenv.bat x64
+    c:\cmsc-15.0_47\setenv.bat x64
     nmake -f Makefile.vc
 
 Tomcat isapi_redirect DLLs may then be found in


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[tomcat-connectors] 03/03: Update version for next development cycle

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat-connectors.git

commit 963347be02958f1a792a177deea1729a4d704c97
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Thu Sep 7 13:26:02 2023 +0100

    Update version for next development cycle
---
 HOWTO-RELEASE.txt                       | 12 ++++++------
 native/configure.ac                     |  2 +-
 native/iis/README                       |  2 +-
 tools/dist/README.html                  |  6 +++---
 tools/dist/binaries/windows/README.html |  2 +-
 xdocs/build.xml                         |  2 +-
 xdocs/miscellaneous/changelog.xml       |  2 ++
 7 files changed, 15 insertions(+), 13 deletions(-)

diff --git a/HOWTO-RELEASE.txt b/HOWTO-RELEASE.txt
index 186baf7bb..f8e58978c 100644
--- a/HOWTO-RELEASE.txt
+++ b/HOWTO-RELEASE.txt
@@ -66,11 +66,11 @@ Use the pattern below for tagging the tomcat-connectors directory.
 
 TAG=JK_{MAJOR_REVISION}_{MINOR_REVISION}_{RELEASE}
 
-Here is an example for mod_jk 1.2.49
+Here is an example for mod_jk 1.2.50
 
-git commit -a -m "Tag JK_1_2_48"
-git tag JK_1_2_48
-git push origin JK_1_2_48
+git commit -a -m "Tag JK_1_2_50"
+git tag JK_1_2_50
+git push origin JK_1_2_50
 # reset main
 
 
@@ -91,9 +91,9 @@ Create the new source distribution
 A tool named jkrelease.sh in the directory tools creates
 a release tarball and a zip including signature files.
 
-Here is an example for mod_jk 1.2.49
+Here is an example for mod_jk 1.2.50
 
-./jkrelease.sh -R git -v 1.2.49 -h
+./jkrelease.sh -R git -v 1.2.50 -h
 
 
 
diff --git a/native/configure.ac b/native/configure.ac
index 05e59c49d..77104431c 100644
--- a/native/configure.ac
+++ b/native/configure.ac
@@ -22,7 +22,7 @@ AC_PREREQ(2.59)
 
 dnl package and version.
 dnl synchronization with common/jk_version.h ?
-AC_INIT([mod_jk], [1.2.49])
+AC_INIT([mod_jk], [1.2.50])
 
 AC_CONFIG_SRCDIR([common/jk_worker.h])
 AC_CONFIG_HEADER(common/config.h)
diff --git a/native/iis/README b/native/iis/README
index d01e18383..ef070ac0a 100644
--- a/native/iis/README
+++ b/native/iis/README
@@ -46,7 +46,7 @@ RELEASING
 
 Construct the binary distributions    
 
-  set VER=1.2.49
+  set VER=1.2.50
   mkdir tomcat-connectors-%VER%-windows-i386-iis
   copy ..\LICENSE tomcat-connectors-%VER%-windows-i386-iis\
   copy ..\NOTICE tomcat-connectors-%VER%-windows-i386-iis\
diff --git a/tools/dist/README.html b/tools/dist/README.html
index 648023193..f38e5c7a9 100644
--- a/tools/dist/README.html
+++ b/tools/dist/README.html
@@ -47,13 +47,13 @@ nearest mirror site!</a></a></h2>
 
 <pre>
 % pgpk -a KEYS
-% pgpv tomcat-connectors-1.2.49-src.tar.gz.asc
+% pgpv tomcat-connectors-1.2.50-src.tar.gz.asc
 <i>or</i>,
 % pgp -ka KEYS
-% pgp tomcat-connectors-1.2.49-src.tar.gz.asc
+% pgp tomcat-connectors-1.2.50-src.tar.gz.asc
 <i>or</i>,
 % gpg --import KEYS
-% gpg --verify tomcat-connectors-1.2.49-src.tar.gz.asc
+% gpg --verify tomcat-connectors-1.2.50-src.tar.gz.asc
 </pre>
 
 <p>We provide SHA512 hashes as an alternative to validate the integrity
diff --git a/tools/dist/binaries/windows/README.html b/tools/dist/binaries/windows/README.html
index e961ed878..a2e231c35 100644
--- a/tools/dist/binaries/windows/README.html
+++ b/tools/dist/binaries/windows/README.html
@@ -27,7 +27,7 @@
    connector to fail.
 </p>
 
-<h2><a name="released">The current stable release is 1.2.49</a></h2>
+<h2><a name="released">The current stable release is 1.2.50</a></h2>
 
 <p>See the Apache Tomcat Connectors
 <a href="http://tomcat.apache.org/connectors-doc/miscellaneous/changelog.html">changelog</a>
diff --git a/xdocs/build.xml b/xdocs/build.xml
index 0043769a9..6124771e3 100644
--- a/xdocs/build.xml
+++ b/xdocs/build.xml
@@ -32,7 +32,7 @@
   <property name="dist.dir"        value="../dist"/>
   <property name="dist.name"       value="docs"/>
 
-  <property name="version"         value="1.2.49"/>
+  <property name="version"         value="1.2.50"/>
 
   <tstamp>
     <format property="year" pattern="yyyy" locale="en" timezone="UTC"/>
diff --git a/xdocs/miscellaneous/changelog.xml b/xdocs/miscellaneous/changelog.xml
index 6318a837f..1bcaa5f51 100644
--- a/xdocs/miscellaneous/changelog.xml
+++ b/xdocs/miscellaneous/changelog.xml
@@ -50,6 +50,8 @@
   new documentation project for JK was started.
   </p>
 </section>
+<section name="Changes between 1.2.49 and 1.2.50">
+</section>
 <section name="Changes between 1.2.48 and 1.2.49">
   <subsection name="Apache">
     <changelog>


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org