Skip to content

Commit 8b10542

Browse files
author
Zachary Scott
committed
Fix markdown link syntax
1 parent 1c08e83 commit 8b10542

File tree

1 file changed

+27
-29
lines changed

1 file changed

+27
-29
lines changed

_posts/2015-11-18-mruby-1.2.0-released.markdown

Lines changed: 27 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ mruby 1.2.0 is released. Download [mruby 1.2.0][mruby-1.2.0-dl] now.
1414

1515
## mruby 1.2.0 by the numbers
1616

17-
* 24 [contributors](contributors)
17+
* 24 [contributors][contributors]
1818
* 202 changed files
1919
* 3,947 additions(+)
2020
* 3,903 deletions(-)
@@ -32,95 +32,94 @@ more information.
3232
### Language changes
3333

3434
* Module#prepend added
35-
* [#2885](https://github.com/mruby/mruby/pull/2885) by [@archSeer](archSeer)
35+
* [#2885](https://github.com/mruby/mruby/pull/2885) by [@archSeer][archSeer]
3636

3737
* String#freeze added
38-
* [1a45447b](https://github.com/mruby/mruby/commit/1a45447b) by [@matz](matz)
38+
* [1a45447b](https://github.com/mruby/mruby/commit/1a45447b) by [@matz][matz]
3939

4040
* Array#index now with block form
41-
* [fafe86d](https://github.com/mruby/mruby/commit/fafe86d) by [@matz](matz)
41+
* [fafe86d](https://github.com/mruby/mruby/commit/fafe86d) by [@matz][matz]
4242

4343

4444
### Core classes changes
4545

4646
* UTF-8 String support
47-
* [798ec3a](https://github.com/mruby/mruby/commit/798ec3a) by [@matz](matz)
48-
* Windows support in [#1822](https://github.com/mruby/mruby/pull/1822) by [@mattn](mattn)
47+
* [798ec3a](https://github.com/mruby/mruby/commit/798ec3a) by [@matz][matz]
48+
* Windows support in [#1822](https://github.com/mruby/mruby/pull/1822) by [@mattn][mattn]
4949

5050

5151
### Stdlib updates
5252

5353
* Add `mruby-error` mrbgem for exception handling library
54-
* [#2845](https://github.com/mruby/mruby/pull/2845) by [@take-cheeze](take-cheeze)
54+
* [#2845](https://github.com/mruby/mruby/pull/2845) by [@take-cheeze][take-cheeze]
5555

5656
* `mrbtest` binary extracted to `mruby-test` mrbgem
57-
* [#2924](https://github.com/mruby/mruby/pull/2924) by [@zzak](zzak)
57+
* [#2924](https://github.com/mruby/mruby/pull/2924) by [@zzak][zzak]
5858
* Use `conf.enable_test` in `build_config.rb` to run tests
5959

6060
* `Fiber.yield` is now public under `mruby-fiber` mrbgem
61-
* [28e735e](https://github.com/mruby/mruby/commit/28e735e) by [@matz](matz)
61+
* [28e735e](https://github.com/mruby/mruby/commit/28e735e) by [@matz][matz]
6262

6363
* `mrbc` extracted as `mruby-bin-mrbc` mrbgem
64-
* [#2760](https://github.com/mruby/mruby/pull/2760) by [@take-cheeze](take-cheeze)
64+
* [#2760](https://github.com/mruby/mruby/pull/2760) by [@take-cheeze][take-cheeze]
6565
* Includes `mruby-compiler` mrbgem extraction
6666

6767
* Add Hash comparison methods
68-
* [#3010](https://github.com/mruby/mruby/pull/3010) by [@nobu](nobu)
69-
* Moved to `mruby-hash-ext` mrbgem in [fa86026](https://github.com/mruby/mruby/commit/fa86026) by [@matz](matz)
68+
* [#3010](https://github.com/mruby/mruby/pull/3010) by [@nobu][nobu]
69+
* Moved to `mruby-hash-ext` mrbgem in [fa86026](https://github.com/mruby/mruby/commit/fa86026) by [@matz][matz]
7070

7171
* Add String#prepend to `mruby-string-ext` mrbgem
72-
* [#2674](https://github.com/mruby/mruby/pull/2674) by [@suzukaze](suzukaze)
72+
* [#2674](https://github.com/mruby/mruby/pull/2674) by [@suzukaze][suzukaze]
7373

7474
* Add String#insert to `mruby-string-ext` mrbgem
75-
* [#2669](https://github.com/mruby/mruby/pull/2669) by [@suzukaze](suzukaze)
75+
* [#2669](https://github.com/mruby/mruby/pull/2669) by [@suzukaze][suzukaze]
7676

7777
* Add String#ljust to `mruby-string-ext` mrbgem
78-
* [#2700](https://github.com/mruby/mruby/pull/2700) by [@takahashim](takahashim)
78+
* [#2700](https://github.com/mruby/mruby/pull/2700) by [@takahashim][takahashim]
7979

8080
* Add String#upto to `mruby-string-ext` mrbgem
81-
* [#2701](https://github.com/mruby/mruby/pull/2701) by [@suzukaze](suzukaze)
81+
* [#2701](https://github.com/mruby/mruby/pull/2701) by [@suzukaze][suzukaze]
8282

8383
* Add String#setbyte and String#byteslice to `mruby-string-ext` mrbgem
84-
* [4fdf492](https://github.com/mruby/mruby/commit/4fdf492) by [@matz](matz)
84+
* [4fdf492](https://github.com/mruby/mruby/commit/4fdf492) by [@matz][matz]
8585

8686

8787
### C API updates
8888

8989
* Rename `DISABLE_STDIO` -> `MRB_DISABLE_STDIO`
9090
* Also renamed `ENABLE_DEBUG` -> `MRB_ENABLE_DEBUG_HOOK`
91-
* [#3014](https://github.com/mruby/mruby/pull/3014) by [@cremno](cremno)
91+
* [#3014](https://github.com/mruby/mruby/pull/3014) by [@cremno][cremno]
9292

9393
* Allow specify endian in big/little and native when dumping and loading mrbc
94-
* [bc9c47d](https://github.com/mruby/mruby/commit/bc9c47d) by [@matz](matz)
94+
* [bc9c47d](https://github.com/mruby/mruby/commit/bc9c47d) by [@matz][matz]
9595

9696

9797
### Build system updates
9898

9999
* Add `:mgem` option for loading gems from `mgem-list`
100-
* [#2846](https://github.com/mruby/mruby/pull/2846) by [@take-cheeze](take-cheeze)
100+
* [#2846](https://github.com/mruby/mruby/pull/2846) by [@take-cheeze][take-cheeze]
101101

102102
* Allow `mrblib` and `test` directories to have subdirs.
103-
* [#2943](https://github.com/mruby/mruby/pull/2943) by [@zzak](zzak)
103+
* [#2943](https://github.com/mruby/mruby/pull/2943) by [@zzak][zzak]
104104

105105
* Allow `bintest` to have subdirs
106-
* [#2927](https://github.com/mruby/mruby/pull/2927) by [@hone](hone)
106+
* [#2927](https://github.com/mruby/mruby/pull/2927) by [@hone][hone]
107107

108108
* Able to source mrbgems using `:path` option
109-
* [#2907](https://github.com/mruby/mruby/pull/2907) by [@hone](hone)
109+
* [#2907](https://github.com/mruby/mruby/pull/2907) by [@hone][hone]
110110

111111
* Add `host_target` and `build_target` param to `MRuby::CrossBuild` instance
112112
* Useful for cross-compiling native extension
113-
* [#2857](https://github.com/mruby/mruby/pull/2857) by [@hone](hone)
113+
* [#2857](https://github.com/mruby/mruby/pull/2857) by [@hone][hone]
114114

115115
* Allow customize bin install path using `INSTALL_DIR` environment variable
116-
* [#2949](https://github.com/mruby/mruby/pull/2949) by [@tatsuhiro-t](tatsuhiro-t)
116+
* [#2949](https://github.com/mruby/mruby/pull/2949) by [@tatsuhiro-t][tatsuhiro-t]
117117

118118
* Docs changed to yard-mruby and extracted to website
119-
* [#2984](https://github.com/mruby/mruby/pull/2984) by [@sagmor](sagmor)
119+
* [#2984](https://github.com/mruby/mruby/pull/2984) by [@sagmor][sagmor]
120120

121121
* Distribute MRuby's source as a Ruby gem
122-
* [#2937](https://github.com/mruby/mruby/pull/2937) by [@sagmor](sagmor)
123-
122+
* [#2937](https://github.com/mruby/mruby/pull/2937) by [@sagmor][sagmor]
124123

125124

126125
[matz]: https://github.com/matz
@@ -134,5 +133,4 @@ more information.
134133
[archSeer]: https://github.com/archSeer
135134
[take-cheeze]: https://github.com/take-cheeze
136135
[suzukaze]: https://github.com/suzukaze
137-
138136
[contributors]: https://github.com/mruby/mruby/graphs/contributors

0 commit comments

Comments
 (0)