Skip to content

Commit 6ac5fc1

Browse files
authored
Preparing release for 1.0.3 (#136)
* u3d/internal pass rake argument * Preparing release for 1.0.3
1 parent 7598d94 commit 6ac5fc1

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Change Log
22

3+
## [v1.0.3](https://github.com/DragonBox/u3d/tree/v1.0.3) (2017-09-11)
4+
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.2...v1.0.3)
5+
6+
**Implemented enhancements:**
7+
8+
- u3d/internal: create a argescape cross platform method [\#132](https://github.com/DragonBox/u3d/issues/132)
9+
- u3d/prettifyer should fail with contextual information to ease improvement [\#128](https://github.com/DragonBox/u3d/issues/128)
10+
- u3d: accept password-less sudo [\#126](https://github.com/DragonBox/u3d/issues/126)
11+
12+
**Fixed bugs:**
13+
14+
- u3d run: -logFile /dev/stdout causes crashes on Linux [\#43](https://github.com/DragonBox/u3d/issues/43)
15+
16+
**Closed issues:**
17+
18+
- Create a full circleci mac/linux example [\#15](https://github.com/DragonBox/u3d/issues/15)
19+
20+
**Merged pull requests:**
21+
22+
- Automate bump & changelog tasks [\#135](https://github.com/DragonBox/u3d/pull/135) ([lacostej](https://github.com/lacostej))
23+
- u3d/prettifyer: fail with contextual information \(Fixes \#128\) [\#134](https://github.com/DragonBox/u3d/pull/134) ([lacostej](https://github.com/lacostej))
24+
- u3d/internal: introduce a argescape string function \(Fixes \#132\) [\#133](https://github.com/DragonBox/u3d/pull/133) ([lacostej](https://github.com/lacostej))
25+
- u3d/credentials support empty passwords for passwordless sudo \(Fixes \#128\) [\#130](https://github.com/DragonBox/u3d/pull/130) ([lacostej](https://github.com/lacostej))
26+
- Download file now prints progress also in non interactive mode \(only in verbose\) [\#129](https://github.com/DragonBox/u3d/pull/129) ([lacostej](https://github.com/lacostej))
27+
328
## [v1.0.2](https://github.com/DragonBox/u3d/tree/v1.0.2) (2017-09-05)
429
[Full Changelog](https://github.com/DragonBox/u3d/compare/v1.0.1...v1.0.2)
530

Rakefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,9 @@ task :ensure_git_clean do
9595
end
9696

9797
# ensure ready to prepare a PR
98-
task :prepare_git_pr do |_t, args|
98+
task :prepare_git_pr, [:pr_branch] do |_t, args|
9999
pr_branch = args['pr_branch']
100+
raise "Missing pr_branch argument" unless pr_branch
100101
UI.user_error! "Prepare git PR stopped by user" unless UI.confirm("Creating PR branch #{pr_branch}")
101102
run_command("git checkout -b #{pr_branch}")
102103
end

0 commit comments

Comments
 (0)