Skip to content

Commit eaa1a5c

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents ea580c4 + fad9efc commit eaa1a5c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Rakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ task :default => :build
3636

3737
desc "Clean everything"
3838
task :clean do
39-
rm "-rf", BUILD, "#{HERE}/test/browserify/browserified.js", "#{HERE}/test/browserify/node_modules"
39+
rm_cmd "-rf", BUILD, "#{HERE}/test/browserify/browserified.js", "#{HERE}/test/browserify/node_modules"
4040
end
4141

4242
desc "Build all package types"
@@ -220,7 +220,7 @@ generated code into a tag, then clean up in a subsequent commit.
220220
3. ver=v$(node -e 'console.log(require("./package.json").version)'); echo "Tag: $ver"
221221
4. git add -f dist/ && git commit -m "Code release"
222222
5. git tag -a "$ver" -m some_tag_message
223-
6. git push origin "$ver:/refs/tags/$ver"
223+
6. git push origin && git push origin --tags
224224
7. npm publish
225225
8. Edit package.json and bump the version
226226
9. git rm -r dist/
@@ -232,7 +232,7 @@ end
232232
# Helpers
233233
#
234234

235-
def rm(*opts)
235+
def rm_cmd(*opts)
236236
opts.unshift "-v" # Potentially remove this for platforms without rm -v
237237
sh "rm", *opts
238238
end

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{ "name": "browser-request"
2-
, "version" : "0.2.1"
2+
, "version" : "0.2.2"
33
, "author" : { "name": "Jason Smith" , "email": "[email protected]" }
44
, "description" : "Browser port of the Node.js 'request' package"
55
, "keywords" : ["request", "http", "browser", "ender", "browserify"]

xmlhttprequest

Submodule xmlhttprequest updated 1 file

0 commit comments

Comments
 (0)