Skip to content

Commit c716745

Browse files
Merge pull request #95 from RobotlegsJS/stable-version
Prepare package for stable version
2 parents 4378860 + 4838245 commit c716745

File tree

2 files changed

+63
-12
lines changed

2 files changed

+63
-12
lines changed

CHANGELOG.md

Lines changed: 60 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# RobotlegsJS Signals Changelog:
22

3-
## Signals 1.0.0
3+
All notable changes to this project will be documented in this file.
44

5-
### v1.0.0 - Planned stable version
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## Suggestions or improvements for further versions
69

710
- [ ] Use [**Function Types**](https://www.typescriptlang.org/docs/handbook/functions.html) for handlers and callbacks instead of generic **Function** type.
811

@@ -16,30 +19,40 @@
1619

1720
- [ ] Migrate [original documentation](https://github.com/robertpenner/as3-signals#readme) and adapt it to TypeScript.
1821

19-
## Signals 0.2.0
22+
## [Unreleased]
23+
24+
### v1.0.0
2025

21-
### v0.2.1
26+
#### Changed
2227

2328
- Update `karma` setup to generate code coverage report only for `src` folder (see #78).
2429

25-
- Use karma-sinon-chai dependency (see #91).
30+
- Use `karma-sinon-chai` dependency (see #91).
2631

2732
- Migrate to headless Chrome (see #92).
2833

29-
- Improve performance of Karma (see #94).
34+
- Improve performance of unit tests running on `karma-webpack` (see #94).
35+
36+
- Prepare package for stable version (see #95).
3037

3138
- Update dev dependencies to latest version.
3239

40+
## Signals 0.2.0
41+
3342
### [v0.2.0](https://github.com/RobotlegsJS/SignalsJS/releases/tag/0.2.0) - 2018-08-02
3443

44+
#### Added
45+
3546
- Adds copyright notice (see #74).
3647

48+
- Use [tslib](https://github.com/Microsoft/tslib) library to avoid duplicated declarations (see #75).
49+
50+
#### Changed
51+
3752
- Enforce TSLint rules (see #55).
3853

3954
- Update TypeScript Compiler Options to be more strict and to generate inline source maps (see #53, #75).
4055

41-
- Use [tslib](https://github.com/Microsoft/tslib) library to avoid duplicated declarations (see #75).
42-
4356
- Disable **removeComments** flag in **tsconfig.json** file, allowing comments to appear in output.
4457

4558
- Update dev dependencies to latest version.
@@ -48,14 +61,20 @@
4861

4962
### [v0.1.1](https://github.com/RobotlegsJS/SignalsJS/releases/tag/0.1.1) - 2018-03-04
5063

64+
#### Changed
65+
5166
- Update codeclimate settings (see #49, #50).
5267

5368
- Update dev dependencies to latest version (see #48).
5469

5570
### [v0.1.0](https://github.com/RobotlegsJS/SignalsJS/releases/tag/0.1.0) - 2018-01-22
5671

72+
#### Added
73+
5774
- Adhere to TypeScript Guidelines for General Types (see #43).
5875

76+
#### Changed
77+
5978
- Improve code coverage to reach 100% (see #42).
6079

6180
- Use `rimraf` instead of `rm -rf` (see #41).
@@ -70,6 +89,8 @@
7089

7190
### [v0.0.12](https://github.com/RobotlegsJS/SignalsJS/releases/tag/0.0.12) - 2017-11-14
7291

92+
#### Added
93+
7394
- Add Changelog (see #25).
7495

7596
- Add Code of Conduct (see #26).
@@ -78,6 +99,8 @@
7899

79100
- Add Pull Request Template (see #28).
80101

102+
#### Changed
103+
81104
- Update README (see #31).
82105

83106
- Solve compilers deprecation warning messages from mocha.
@@ -86,62 +109,90 @@
86109

87110
### [v0.0.11](https://github.com/RobotlegsJS/SignalsJS/releases/tag/0.0.11) - 2017-09-26
88111

112+
#### Changed
113+
89114
- Adapt to NPM [v5.0.0](http://blog.npmjs.org/post/161081169345/v500) (see #16).
90115

91116
- Update dev dependencies to latest version.
92117

93118
### [v0.0.10](https://github.com/RobotlegsJS/SignalsJS/releases/tag/0.0.10) - 2017-09-15
94119

120+
#### Changed
121+
95122
- Update Prettier configuration (see #15).
96123

97124
### [v0.0.9](https://github.com/RobotlegsJS/SignalsJS/releases/tag/0.0.9) - 2017-09-14
98125

99-
- Update TSLint rules (see #9).
126+
#### Added
100127

101128
- Add support to [Prettier](https://prettier.io) code formatter (see #10).
102129

103130
- Add integration with [CodeBeat](https://codebeat.co) (see #12 and #13).
104131

132+
#### Changed
133+
134+
- Update TSLint rules (see #9).
135+
105136
- Update dev dependencies to latest version.
106137

107138
### [v0.0.8](https://github.com/RobotlegsJS/SignalsJS/releases/tag/0.0.8) - 2017-09-04
108139

140+
#### Added
141+
109142
- Add support to [Istanbul](https://istanbul.js.org) test coverage tool (see #7).
110143

144+
#### Changed
145+
111146
- Improve code coverage (see #3, #5, #6 and #8).
112147

113148
- Update dev dependencies to latest version.
114149

115150
### [v0.0.7](https://github.com/RobotlegsJS/SignalsJS/releases/tag/0.0.7) - 2017-08-30
116151

152+
#### Changed
153+
117154
- Update Travis configuration file.
118155

119156
### [v0.0.6](https://github.com/RobotlegsJS/SignalsJS/releases/tag/0.0.6) - 2017-08-30
120157

158+
#### Added
159+
121160
- Enable GreenKeeper (see #2).
122161

162+
#### Changed
163+
123164
- Update dev dependencies to latest version.
124165

125166
### [v0.0.5](https://github.com/RobotlegsJS/SignalsJS/releases/tag/0.0.5) - 2017-08-11
126167

168+
#### Changed
169+
127170
- Update contributing guidelines.
128171

129172
### [v0.0.4](https://github.com/RobotlegsJS/SignalsJS/releases/tag/0.0.4) - 2017-08-11
130173

174+
#### Added
175+
131176
- Add contributing guidelines.
132177

178+
#### Changed
179+
133180
- Update README.
134181

135182
- Update dev dependencies to latest version.
136183

137184
### [v0.0.3](https://github.com/RobotlegsJS/SignalsJS/releases/tag/0.0.3) - 2017-08-06
138185

186+
#### Changed
187+
139188
- Update README.
140189

141190
- Update publish-please configuration.
142191

143192
### [v0.0.2](https://github.com/RobotlegsJS/SignalsJS/releases/tag/0.0.2) - 2017-08-06
144193

194+
#### Changed
195+
145196
- Update README.
146197

147198
- Update dev dependencies to latest version.

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6818,9 +6818,9 @@ y18n@^3.2.1:
68186818
integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==
68196819

68206820
yallist@^3.0.0, yallist@^3.0.2:
6821-
version "3.0.2"
6822-
resolved "https://registry.npmjs.org/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9"
6823-
integrity sha1-hFK0u36Dx8GI2AQcGoN8dz1ti7k=
6821+
version "3.0.3"
6822+
resolved "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9"
6823+
integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==
68246824

68256825
yargs-parser@^10.1.0:
68266826
version "10.1.0"

0 commit comments

Comments
 (0)