You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2022/05/05 22:16:58 UTC

[couchdb-mochiweb] 01/03: Rename master to main

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

vatamane pushed a commit to tag v2.22.0
in repository https://gitbox.apache.org/repos/asf/couchdb-mochiweb.git

commit e9eb2f108b3c029c799d998eac651999c4117ebd
Author: Bob Ippolito <bo...@redivi.com>
AuthorDate: Thu Jul 8 13:39:11 2021 -0700

    Rename master to main
---
 .gitignore                                      | 1 +
 CHANGES.md                                      | 6 ++++++
 src/mochiweb.app.src                            | 2 +-
 support/templates/mochiwebapp_skel/rebar.config | 2 +-
 4 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index bb59f19..b9606c1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,3 +10,4 @@
 *.swp
 *.beam
 *.dump
+rebar.lock
diff --git a/CHANGES.md b/CHANGES.md
index 65e171c..ff3a8b0 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,9 @@
+Version 2.22.0 released XXXX-XX-XX
+
+* Renamed master branch to main
+* Add unquote_path/1 for separate '+' encoding
+  https://github.com/mochi/mochiweb/pull/231
+
 Version 2.21.0 released 2021-06-06
 
 * Upgrade crypto functions to support OTP 23
diff --git a/src/mochiweb.app.src b/src/mochiweb.app.src
index 7b9578b..f0059da 100644
--- a/src/mochiweb.app.src
+++ b/src/mochiweb.app.src
@@ -1,7 +1,7 @@
 %% This is generated from src/mochiweb.app.src
 {application, mochiweb,
  [{description, "MochiMedia Web Server"},
-  {vsn, "2.21.0"},
+  {vsn, "2.22.0"},
   {modules, []},
   {registered, []},
   {env, []},
diff --git a/support/templates/mochiwebapp_skel/rebar.config b/support/templates/mochiwebapp_skel/rebar.config
index da4939c..da560eb 100644
--- a/support/templates/mochiwebapp_skel/rebar.config
+++ b/support/templates/mochiwebapp_skel/rebar.config
@@ -2,6 +2,6 @@
 {erl_opts, [debug_info]}.
 {deps, [
   {mochiweb, ".*",
-   {git, "git://github.com/mochi/mochiweb.git", {branch, "master"}}}]}.
+   {git, "git://github.com/mochi/mochiweb.git", {branch, "main"}}}]}.
 {cover_enabled, true}.
 {eunit_opts, [verbose, {report,{eunit_surefire,[{dir,"."}]}}]}.