Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
e8662482
Commit
e8662482
authored
Jan 10, 2020
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't include vim temp-files in release tarball
and bump post-release version number
parent
7d94c712
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
7 deletions
+13
-7
Makefile
Makefile
+5
-0
RELEASE.md
RELEASE.md
+6
-6
src/headless/converse-core.js
src/headless/converse-core.js
+1
-1
webpack.html
webpack.html
+1
-0
No files found.
Makefile
View file @
e8662482
...
@@ -62,6 +62,10 @@ serve: stamp-npm
...
@@ -62,6 +62,10 @@ serve: stamp-npm
serve_bg
:
stamp-npm
serve_bg
:
stamp-npm
$(HTTPSERVE)
-p
$(HTTPSERVE_PORT)
-c-1
-s
&
$(HTTPSERVE)
-p
$(HTTPSERVE_PORT)
-c-1
-s
&
.PHONY
:
notemps
notemps
:
find
-name
"*~"
-exec
rm
{}
\;
########################################################################
########################################################################
## Translation machinery
## Translation machinery
...
@@ -98,6 +102,7 @@ release:
...
@@ -98,6 +102,7 @@ release:
make pot
make pot
make po
make po
make build
make build
make notemps
npm pack
npm pack
.PHONY
:
postrelease
.PHONY
:
postrelease
...
...
RELEASE.md
View file @
e8662482
# Release checklist
# Release checklist
1.
Run
`make check`
to check that all tests pass.
1.
Run
`make check`
to check that all tests pass.
2.
Run
`make release VERSION=6.0.
0
`
2.
Run
`make release VERSION=6.0.
1
`
3.
Do a
`git diff`
to check if things look sane.
3.
Do a
`git diff`
to check if things look sane.
4.
Do a quick manual test with the
`dist`
files (via
`index.html`
)
4.
Do a quick manual test with the
`dist`
files (via
`index.html`
)
5.
`git commit -am "Release 6.0.
0
"`
5.
`git commit -am "Release 6.0.
1
"`
6.
`git tag -s v6.0.
0 -m "Release 6.0.0
"`
6.
`git tag -s v6.0.
1 -m "Release 6.0.1
"`
7.
Run
`git push && git push --tags`
7.
Run
`git push && git push --tags`
8.
Update https://conversejs.org
8.
Update https://conversejs.org
*
`cd /home/conversejs/converse.js`
*
`cd /home/conversejs/converse.js`
*
`git clone --branch v6.0.
0 git@github.com:conversejs/converse.js.git 6.0.0
`
*
`git clone --branch v6.0.
1 git@github.com:conversejs/converse.js.git 6.0.1
`
*
`cd 6.0.
0 && ASSET_PATH=https://cdn.conversejs.org/6.0.0
/dist/ make dist`
*
`cd 6.0.
1 && ASSET_PATH=https://cdn.conversejs.org/6.0.1
/dist/ make dist`
*
`cd .. && git pull && ASSET_PATH=https://cdn.conversejs.org/dist/ make dist`
*
`cd .. && git pull && ASSET_PATH=https://cdn.conversejs.org/dist/ make dist`
9.
Update release page on Github
9.
Update release page on Github
11.
Run
`npm publish && cd src/headless/ && npm publish`
11.
Run
`npm publish && cd src/headless/ && npm publish`
12.
Update the repository on weblate
12.
Update the repository on weblate
13.
Decide on next release number and run
`make postrelease VERSION=6.0.
1
`
13.
Decide on next release number and run
`make postrelease VERSION=6.0.
2
`
src/headless/converse-core.js
View file @
e8662482
...
@@ -112,7 +112,7 @@ const _converse = {
...
@@ -112,7 +112,7 @@ const _converse = {
'
promises
'
:
{}
'
promises
'
:
{}
}
}
_converse
.
VERSION_NAME
=
"
v6.0.
0
"
;
_converse
.
VERSION_NAME
=
"
v6.0.
1dev
"
;
Object
.
assign
(
_converse
,
Backbone
.
Events
);
Object
.
assign
(
_converse
,
Backbone
.
Events
);
...
...
webpack.html
View file @
e8662482
...
@@ -18,6 +18,7 @@
...
@@ -18,6 +18,7 @@
}
}
});
});
converse
.
initialize
({
converse
.
initialize
({
show_send_button
:
true
,
auto_away
:
300
,
auto_away
:
300
,
auto_register_muc_nickname
:
true
,
auto_register_muc_nickname
:
true
,
loglevel
:
'
debug
'
,
loglevel
:
'
debug
'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment