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 23:50:56 UTC

[couchdb] branch 3.x updated: 2906 couchjs sm version (#2911) (#3297)

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

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


The following commit(s) were added to refs/heads/3.x by this push:
     new b98dc48  2906 couchjs sm version (#2911) (#3297)
b98dc48 is described below

commit b98dc4831fb27b0d1a5d28f6c2b5f3e40d52e1c5
Author: Joan Touzet <wo...@users.noreply.github.com>
AuthorDate: Mon Dec 14 18:50:44 2020 -0500

    2906 couchjs sm version (#2911) (#3297)
    
    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
    
    Co-authored-by: Simon Klassen <69...@users.noreply.github.com>
---
 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 ++ "\""}