You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2020/12/14 22:48:51 UTC

[couchdb] branch couchjs_ver_3x created (now 3e0f315)

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

wohali pushed a change to branch couchjs_ver_3x
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


      at 3e0f315  2906 couchjs sm version (#2911)

This branch includes the following new commits:

     new 3e0f315  2906 couchjs sm version (#2911)

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.



[couchdb] 01/01: 2906 couchjs sm version (#2911)

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

wohali pushed a commit to branch couchjs_ver_3x
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 3e0f3157c63e831d89b4080851ebe71e109f0f28
Author: Simon Klassen <69...@users.noreply.github.com>
AuthorDate: Sun May 31 07:50:19 2020 +0800

    2906 couchjs sm version (#2911)
    
    Closes #2906
    
    * Added a suffix to the first line of couchjs with the (static) version number compiled
    * Update rebar.config.script
    * In couchjs -h replaced the link to jira with a link to github
    
    Co-authored-by: simon.klassen <simon.klassen>
    Co-authored-by: Jan Lehnardt <jan@apache.org
---
 src/couch/priv/couch_js/1.8.5/help.h | 2 +-
 src/couch/priv/couch_js/60/help.h    | 2 +-
 src/couch/priv/couch_js/68/help.h    | 2 +-
 src/couch/rebar.config.script        | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/couch/priv/couch_js/1.8.5/help.h b/src/couch/priv/couch_js/1.8.5/help.h
index fa86a1e..3a19901 100644
--- a/src/couch/priv/couch_js/1.8.5/help.h
+++ b/src/couch/priv/couch_js/1.8.5/help.h
@@ -16,7 +16,7 @@
 #include "config.h"
 
 static const char VERSION_TEMPLATE[] =
-    "%s - %s\n"
+    "%s - %s (SpiderMonkey 1.8.5)\n"
     "\n"
     "Licensed under the Apache License, Version 2.0 (the \"License\"); you may "
         "not use\n"
diff --git a/src/couch/priv/couch_js/60/help.h b/src/couch/priv/couch_js/60/help.h
index fa86a1e..826babb 100644
--- a/src/couch/priv/couch_js/60/help.h
+++ b/src/couch/priv/couch_js/60/help.h
@@ -16,7 +16,7 @@
 #include "config.h"
 
 static const char VERSION_TEMPLATE[] =
-    "%s - %s\n"
+    "%s - %s (SpiderMonkey 60)\n"
     "\n"
     "Licensed under the Apache License, Version 2.0 (the \"License\"); you may "
         "not use\n"
diff --git a/src/couch/priv/couch_js/68/help.h b/src/couch/priv/couch_js/68/help.h
index fa86a1e..7c7550c 100644
--- a/src/couch/priv/couch_js/68/help.h
+++ b/src/couch/priv/couch_js/68/help.h
@@ -16,7 +16,7 @@
 #include "config.h"
 
 static const char VERSION_TEMPLATE[] =
-    "%s - %s\n"
+    "%s - %s (SpiderMonkey 68)\n"
     "\n"
     "Licensed under the Apache License, Version 2.0 (the \"License\"); you may "
         "not use\n"
diff --git a/src/couch/rebar.config.script b/src/couch/rebar.config.script
index e749e40..1638db4 100644
--- a/src/couch/rebar.config.script
+++ b/src/couch/rebar.config.script
@@ -76,7 +76,7 @@ ConfigH = [
     {"JSSCRIPT_TYPE", "JSObject*"},
     {"COUCHJS_NAME", "\"" ++ CouchJSName++ "\""},
     {"PACKAGE", "\"apache-couchdb\""},
-    {"PACKAGE_BUGREPORT", "\"https://issues.apache.org/jira/browse/COUCHDB\""},
+    {"PACKAGE_BUGREPORT", "\"https://github.com/apache/couchdb/issues\""},
     {"PACKAGE_NAME", "\"Apache CouchDB\""},
     {"PACKAGE_STRING", "\"Apache CouchDB " ++ Version ++ "\""},
     {"PACKAGE_VERSION", "\"" ++ Version ++ "\""}