Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ltrung committed Nov 24, 2020
1 parent 0497d3d commit c9cdbbf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [2.1.0] - 2020-11-23

### Added
- [Documentation] Add demo video stats widget information to the quality and bandwidth guide
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "amazon-chime-sdk-js",
"version": "2.0.0",
"version": "2.1.0",
"description": "Amazon Chime SDK for JavaScript",
"main": "build/index.js",
"types": "build/index.d.ts",
Expand Down
10 changes: 5 additions & 5 deletions script/publish
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ x = STDIN.gets
exit(1) unless x.strip == 'yes'
puts

verbose('git fetch origin')
verbose('git reset --hard origin/master')
verbose('git clean -ffxd .')
#verbose('git fetch origin')
#verbose('git reset --hard origin/master')
#verbose('git clean -ffxd .')

File.write(changelog_file, File.read(changelog_file).gsub(/\[Unreleased\]/, "[#{version_string}] - #{Date.today}"))
verbose("npm version #{version_string} --no-git-tag-version")
Expand All @@ -89,6 +89,8 @@ verbose("git tag #{semvertag} -m \"Release #{semvertag}.\"")
verbose('npm run build:publish')
verbose('npm pack --dry-run')

verbose("npm run login")

puts
puts "Do you want to upload these files?"
puts
Expand All @@ -100,5 +102,3 @@ puts
verbose("git push origin")
verbose("git push origin -f #{tag}")
verbose("git push origin -f #{semvertag}")

verbose("npm run login")

0 comments on commit c9cdbbf

Please sign in to comment.