Skip to content

Commit e803fe4

Browse files
committed
fix compare links [skip ci]
1 parent 80d5bf6 commit e803fe4

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

CHANGELOG.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org).
77

8-
## [3.0.0](https://github.com/onury/jsdoc-x/compare/v3.0.0...v2.0.2) (2018-02-24)
8+
## [3.0.0](https://github.com/onury/jsdoc-x/compare/v2.0.2...v3.0.0) (2018-02-24)
99

1010
### Changed
1111
- **Breaking:** Requires Node.js v6 or later. (Dropped support for Node v4.)
@@ -23,17 +23,17 @@ and this project adheres to [Semantic Versioning](http://semver.org).
2323
- An issue with `utils.isClass()` method where `meta.code.type` is not set to `ClassDeclaration`.
2424
- `.isProperty()` utility method. It'll now return `false` if symbol is a method/function. This also affects the following methods: `.isStaticProperty()`, `.isInstanceProperty()`.
2525

26-
## [2.0.2](https://github.com/onury/jsdoc-x/compare/v2.0.2...v2.0.1) (2018-01-18)
26+
## [2.0.2](https://github.com/onury/jsdoc-x/compare/v2.0.1...v2.0.2) (2018-01-18)
2727

2828
### Changed
2929
- Updated dependencies.
3030

31-
## [2.0.1](https://github.com/onury/jsdoc-x/compare/v2.0.1...v2.0.0) (2017-08-24)
31+
## [2.0.1](https://github.com/onury/jsdoc-x/compare/v2.0.0...v2.0.1) (2017-08-24)
3232

3333
### Added
3434
- `options.debug` for `.parse()` method. Fixes [#4](https://github.com/onury/jsdoc-x/issues/4).
3535

36-
## [2.0.0](https://github.com/onury/jsdoc-x/compare/v2.0.0...v1.3.3) (2017-08-24)
36+
## [2.0.0](https://github.com/onury/jsdoc-x/compare/v1.3.3...v2.0.0) (2017-08-24)
3737

3838
### Changed
3939
- **Breaking**: Requires Node.js v4 or newer.
@@ -47,22 +47,22 @@ and this project adheres to [Semantic Versioning](http://semver.org).
4747
- An issue with [a rare case](https://github.com/onury/jsdoc-x/pull/3) that occurred when a JSDoc comment contained a specific string.
4848
- `utils.getLongName()` (was broken after JSDoc updated).
4949

50-
## [1.3.3](https://github.com/onury/jsdoc-x/compare/v1.3.3...v1.3.2) (2017-03-10)
50+
## [1.3.3](https://github.com/onury/jsdoc-x/compare/v1.3.2...v1.3.3) (2017-03-10)
5151

5252
### Added
5353
- `ignored` boolean option that specifies whether to exclude symbols marked with `@ignore` tag in the output.
5454
- `utils.isIgnored()`.
5555
- `utils.isDeprecated()`.
5656

57-
## [1.3.2](https://github.com/onury/jsdoc-x/compare/v1.3.2...v1.3.0) (2017-03-09)
57+
## [1.3.2](https://github.com/onury/jsdoc-x/compare/v1.3.0...v1.3.2) (2017-03-09)
5858

5959
### Changed
6060
- Improved symbols sorting logic/performance.
6161

6262
### Added
6363
- `utils.getSymbolNames()` utility method.
6464

65-
## [1.3.0](https://github.com/onury/jsdoc-x/compare/v1.3.0...v1.1.0) (2017-03-05)
65+
## [1.3.0](https://github.com/onury/jsdoc-x/compare/v1.1.0...v1.3.0) (2017-03-05)
6666

6767
### Changed
6868
- Updated dependencies to latest versions.
@@ -71,15 +71,15 @@ and this project adheres to [Semantic Versioning](http://semver.org).
7171
- Options: `allowUnknownTags`, `dictionaries`, `includePattern`, `excludePattern`.
7272
- [JSDoc plugin](http://usejsdoc.org/about-plugins.html) support via the new `plugins` option.
7373

74-
## [1.1.0](https://github.com/onury/jsdoc-x/compare/v1.1.0...v1.0.8) (2016-08-13)
74+
## [1.1.0](https://github.com/onury/jsdoc-x/compare/v1.0.8...v1.1.0) (2016-08-13)
7575

7676
### Added
7777
- Utility methods: `utils.isPublic()`, `utils.isPrivate()`, `utils.isProtected()`.
7878

7979
### Fixed
8080
- Constructors would still show up in the output even though `@private` is set.
8181

82-
## [1.0.8](https://github.com/onury/jsdoc-x/compare/v1.0.8...v1.0.5) (2016-06-06)
82+
## [1.0.8](https://github.com/onury/jsdoc-x/compare/v1.0.5...v1.0.8) (2016-06-06)
8383

8484
### Changed
8585
- Sort options now sorts with `$longname`.
@@ -91,7 +91,7 @@ and this project adheres to [Semantic Versioning](http://semver.org).
9191
### Fixed
9292
- `utils.getFullName()` (alias: `utils.getLongName()`).
9393

94-
## [1.0.5](https://github.com/onury/jsdoc-x/compare/v1.0.5...v1.0.2) (2016-05-30)
94+
## [1.0.5](https://github.com/onury/jsdoc-x/compare/v1.0.2...v1.0.5) (2016-05-30)
9595

9696
### Added
9797
- Utility methods `utils.notate()` and `utils.isModule()`.
@@ -101,17 +101,17 @@ and this project adheres to [Semantic Versioning](http://semver.org).
101101
- `utils.isMethod()`. Added alias `utils.isFunction()`
102102
- `utils.isClass()`.
103103

104-
## [1.0.2](https://github.com/onury/jsdoc-x/compare/v1.0.2...v1.0.1) (2016-05-10)
104+
## [1.0.2](https://github.com/onury/jsdoc-x/compare/v1.0.1...v1.0.2) (2016-05-10)
105105

106106
### Fixed
107107
- Parsing an array of files was broken. Fixed. (PR [#2](https://github.com/onury/jsdoc-x/pull/2))
108108

109-
## [1.0.1](https://github.com/onury/jsdoc-x/compare/v1.0.1...v1.0.0) (2016-05-07)
109+
## [1.0.1](https://github.com/onury/jsdoc-x/compare/v1.0.0...v1.0.1) (2016-05-07)
110110

111111
### Fixed
112112
- `utils.isMethod()`.
113113

114-
## [1.0.0](https://github.com/onury/jsdoc-x/compare/v1.0.0...v0.4.8) (2016-05-05)
114+
## [1.0.0](https://github.com/onury/jsdoc-x/compare/v0.4.8...v1.0.0) (2016-05-05)
115115

116116
### Added
117117
- `glob` support for `files` option of `.parse()` method.
@@ -121,7 +121,7 @@ and this project adheres to [Semantic Versioning](http://semver.org).
121121
- `.filter()` method for use with (already parsed) documentation array.
122122
- `utils` as a utility module for documentation symbols.
123123

124-
## [0.4.8](https://github.com/onury/jsdoc-x/compare/v0.4.8...v0.4.6) (2016-03-19)
124+
## [0.4.8](https://github.com/onury/jsdoc-x/compare/v0.4.6...v0.4.8) (2016-03-19)
125125

126126
### Fixed
127127
- If the parent project(s) has `jsdoc`, ours won't get installed. Since we use a specific file within `jsdoc` module, we cannot find it via `require()`. Now, fixed `jsdoc` path resolver. This will either use the local or from the parent project(s) properly.
@@ -130,12 +130,12 @@ and this project adheres to [Semantic Versioning](http://semver.org).
130130
## [0.4.6] (2016-03-19)
131131

132132
### Added
133-
- `output` option to write `JSON` file.
133+
- `output`` f option to wrile.
134134

135-
## [0.4.0] (2016-03-18)
135+
ite `JSON## [0.4.0] (2016-03-18)
136136

137137
### Changed
138-
- Using `child_process.spawn` instead of `execFile` since the latter has 200kb limit.
138+
- Using `child_process `e.spawn` ixecFilnstead ofe` since the latter has 200kb limit.
139139

140140
### Added
141141
- `filter`, `undocumented`, `undescribed`, `module` options.
@@ -144,12 +144,12 @@ and this project adheres to [Semantic Versioning](http://semver.org).
144144
## [0.3.0] (2016-03-17)
145145

146146
### Added
147-
- Support for both Promises and callbacks.
148-
- `relativePath` option.
147+
- Support for both `r Promises and calelativlbacks.
148+
-ePath` option.
149149

150150
## [0.1.0] (2016-03-16)
151151

152152
- Initial.
153153

154154

155-
[jsdoc-releases]:https://github.com/jsdoc3/jsdoc/releases
155+
[://jsdoc-releasgithubes]:https.com/jsdoc3/jsdoc/releases

0 commit comments

Comments
 (0)