Skip to content

Commit e33a955

Browse files
author
José Valim
committed
Merge pull request #2346 from alco/md-fixes
Fix formatting in .md files
2 parents 43706a4 + b816c98 commit e33a955

File tree

3 files changed

+35
-33
lines changed

3 files changed

+35
-33
lines changed

CHANGELOG.md

Lines changed: 33 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# v0.14.0-dev
1+
# Changelog
2+
3+
## v0.14.0-dev
24

35
* Enhancements
46
* [Kernel] Store documentation in the abstract code to avoid loading them when the module is loaded
@@ -24,7 +26,7 @@
2426
* [Kernel] Retrieving docs as `module.__info__(:docs)` is deprecated, instead `Code.get_docs/2` must be used
2527
* [Mix] `mix new` no longer generates a supevision tree by default, please pass `--sup` instead
2628

27-
# v0.13.3 (2014-05-24)
29+
## v0.13.3 (2014-05-24)
2830

2931
* Enhancements
3032
* [OptionParser] Add `:strict` option that only parses known switches
@@ -72,7 +74,7 @@
7274
* [OptionParser] Errors on parsing returns the switch and value as binaries (unparsed)
7375
* [String] `String.to_char_list/1` (previously deprecated) no longer returns a tuple but the char list only and raises in case of failure
7476

75-
# v0.13.2 (2014-05-11)
77+
## v0.13.2 (2014-05-11)
7678

7779
* Enhancements
7880
* [Application] Add an Application module with common functions to work with OTP applications
@@ -124,7 +126,7 @@
124126
* [URI] The `URI.Info` record has now become the `URI` struct
125127
* [Version] The `Version.Schema` record has now become the `Version` struct
126128

127-
# v0.13.1 (2014-04-27)
129+
## v0.13.1 (2014-04-27)
128130

129131
* Enhancements
130132
* [Mix] Support `MIX_EXS` as configuration for running the current mix.exs file
@@ -150,7 +152,7 @@
150152
* [Path] Atoms are no longer supported in Path functions
151153
* [Regex] Regexes are no longer unicode by default. Instead, they must be explicitly marked with the `u` option
152154

153-
# v0.13.0 (2014-04-20)
155+
## v0.13.0 (2014-04-20)
154156

155157
* Enhancements
156158
* [Base] Add `Base` module which does conversions to bases 16, 32, hex32, 64 and url64
@@ -201,7 +203,7 @@
201203
* Backwards incompatible changes
202204
* [ExUnit] Formatters are now required to be a GenEvent and `ExUnit.run/2` returns a map with results
203205

204-
# v0.12.5 (2014-03-09)
206+
## v0.12.5 (2014-03-09)
205207

206208
* Bug fixes
207209
* [Kernel] Ensure `try` does not generate an after clause. Generating an after clause forbade clauses in the `else` part from being tail recursive. This should improve performance and memory consumption of `Stream` functions
@@ -219,7 +221,7 @@
219221
* Backwards incompatible changes
220222
* [Mix] Remove `MIX_GIT_FORCE_HTTPS` as Git itself already provides mechanisms for doing so
221223

222-
# v0.12.4 (2014-02-12)
224+
## v0.12.4 (2014-02-12)
223225

224226
* Enhancements
225227
* [Mix] `mix deps.get` and `mix deps.update` no longer compile dependencies afterwards. Instead, they mark the dependencies which are going to be automatically compiled next time `deps.check` is invoked (which is done automatically by most mix tasks). This means users should have a better workflow when migrating in between environments
@@ -233,7 +235,7 @@
233235
* [ExUnit] `CaptureIO` returns an empty string instead of nil when there is no capture
234236
* [Version] The `Version` module now only works with SemVer. The functions `Version.parse/1` and `Version.parse_requirement/1` now return `{:ok,res} | :error` for the cases you want to handle non SemVer cases manually. All other functions will trigger errors on non semantics versions
235237

236-
# v0.12.3 (2014-02-02)
238+
## v0.12.3 (2014-02-02)
237239

238240
* Enhancements
239241
* [Kernel] Warnings now are explicitly tagged with "warning:" in messages
@@ -266,7 +268,7 @@
266268
* [Range] `Range` is no longer a record, instead use `first .. last` if you need pattern matching
267269
* [Set] Implementations of `difference/2`, `disjoint?/2`, `equal?/2`, `intersection/2`, `subset?/2` and `union/2` in `HashSet` are no longer polymorphic. To get polymorphism, use the functions in `Set` instead
268270

269-
# v0.12.2 (2014-01-15)
271+
## v0.12.2 (2014-01-15)
270272

271273
* Enhancements
272274
* [EEx] Allow `EEx.AssignsEngine` to accept any Dict
@@ -295,7 +297,7 @@
295297
* Backwards incompatible changes
296298
* [String] Change `String.next_grapheme/1` and `String.next_codepoint/1` to return `nil` on string end
297299

298-
# v0.12.1 (2014-01-04)
300+
## v0.12.1 (2014-01-04)
299301

300302
* Enhancements
301303
* [ExUnit] Support `:include` and `:exclude` configuration options to filter which tests should run based on their tags. Those options are also supported via `mix test` as `--include` and `--exclude`
@@ -319,7 +321,7 @@
319321
* [GenServer] GenServer now stops on unknown call/cast requests
320322
* [Kernel] Change how `->` is represented in AST. Now each clause is represented by its own AST node which makes composition easier. See commit 51aef55 for more information.
321323

322-
# v0.12.0 (2013-12-15)
324+
## v0.12.0 (2013-12-15)
323325

324326
* Enhancements
325327
* [Exception] Allow `exception/1` to be overridden and promote it as the main mechanism to customize exceptions
@@ -356,7 +358,7 @@
356358
* [Stream] The `Stream.Lazy` structure has changed to accumulate functions and accumulators as we go (its inspected representation has also changed)
357359
* [Typespec] `when` clauses were moved to the outer part of the spec and should be in the keywords format. So `add(a, b) when is_subtype(a, integer) and is_subtype(b, integer) :: integer` should now be written as `add(a, b) :: integer when a: integer, b: integer`
358360

359-
# v0.11.2 (2013-11-14)
361+
## v0.11.2 (2013-11-14)
360362

361363
* Enhancements
362364
* [Mix] Add `mix iex` that redirects users to the proper `iex -S mix` command
@@ -365,7 +367,7 @@
365367
* Backwards incompatible changes
366368
* [Mix] Mix now compiles files to `_build`. Projects should update just fine, however documentation and books may want to update to the latest information
367369

368-
# v0.11.1 (2013-11-07)
370+
## v0.11.1 (2013-11-07)
369371

370372
* Enhancements
371373
* [Mix] Improve dependency convergence by explicitly checking each requirement instead of expecting all requirements to be equal
@@ -383,7 +385,7 @@
383385
* Backwards incompatible changes
384386
* [Mix] Setting `:load_paths` in your project configuration is deprecated
385387

386-
# v0.11.0 (2013-11-02)
388+
## v0.11.0 (2013-11-02)
387389

388390
* Enhancements
389391
* [Code] Eval now returns variables from other contexts
@@ -430,7 +432,7 @@
430432
* [Process] `Process.group_leader/2` args have been reversed so the "subject" comes first
431433
* [Protocol] Protocol no longer dispatches to `Number`, but to `Integer` and `Float`
432434

433-
# v0.10.3 (2013-10-02)
435+
## v0.10.3 (2013-10-02)
434436

435437
* Enhancements
436438
* [Enum] Add `Enum.take_every/2`
@@ -465,7 +467,7 @@
465467
* [Mix] `File.IteratorError` was renamed to `IO.StreamError`
466468
* [Mix] `mix new` now defaults to the `--sup` option, use `--bare` to get the previous behaviour
467469

468-
# v0.10.2 (2013-09-03)
470+
## v0.10.2 (2013-09-03)
469471

470472
* Enhancements
471473
* [CLI] Add `--verbose` to elixirc, which now is non-verbose by default
@@ -528,7 +530,7 @@
528530
* [Kernel] The previous ambiguous import syntax `import :functions, Foo` was removed in favor of `import Foo, only: :functions`
529531
* [OptionParser] `parse` and `parse_head` now returns a tuple with three elements instead of two
530532

531-
# v0.10.1 (2013-08-03)
533+
## v0.10.1 (2013-08-03)
532534

533535
* Enhancements
534536
* [Behaviour] Add support for `defmacrocallback/1`
@@ -578,7 +580,7 @@
578580
* [Regex] `Regex.scan/3` now always returns a list of lists, normalizing the result, instead of list with mixed lists and binaries
579581
* [System] `System.halt/2` was removed since the current Erlang implementation of such function is bugged
580582

581-
# v0.10.0 (2013-07-15)
583+
## v0.10.0 (2013-07-15)
582584

583585
* Enhancements
584586
* [ExUnit] Support `trace: true` option which gives detailed reporting on test runs
@@ -622,7 +624,7 @@
622624
* [Record] First element of a record via `defrecordp` is now the `defrecordp` name and no longer the current atom
623625
* [URI] Remove custom URI parsers in favor of `URI.default_port/2`
624626

625-
# v0.9.3 (2013-06-23)
627+
## v0.9.3 (2013-06-23)
626628

627629
* Enhancements
628630
* [File] Add `File.chgrp`, `File.chmod` and `File.chown`
@@ -660,7 +662,7 @@
660662
* [Macro] `Macro.expand/2` now expands until final form. Although this is backwards incompatible, it is very likely you do not need to change your code, since expansion until its final form is recommended, particularly if you are expecting an atom out of it
661663
* [Mix] No longer support beam files on `mix local`
662664

663-
# v0.9.2 (2013-06-13)
665+
## v0.9.2 (2013-06-13)
664666

665667
* Enhancements
666668
* [ExUnit] `capture_io` now captures prompt by default
@@ -685,7 +687,7 @@
685687
* Backwards incompatible changes
686688
* [Kernel] The `=~` operator now returns true or false instead of an index
687689

688-
# v0.9.1 (2013-05-30)
690+
## v0.9.1 (2013-05-30)
689691

690692
* Enhancements
691693
* [IEx] Limit the number of entries kept in history and allow it to be configured
@@ -701,7 +703,7 @@
701703
* [Record] Fix a bug where nested records cannot be defined
702704
* [Record] Fix a bug where a record named Record cannot be defined
703705

704-
# v0.9.0 (2013-05-23)
706+
## v0.9.0 (2013-05-23)
705707

706708
* Enhancements
707709
* [ExUnit] `ExUnit.CaptureIO` now accepts an input to be used during capture
@@ -714,7 +716,7 @@
714716
* [Kernel] Erlang R15 is no longer supported
715717
* [Kernel] Elixir modules are now represented as `Elixir.ModuleName` (using `.` instead of `-` as separator)
716718

717-
# v0.8.3 (2013-05-22)
719+
## v0.8.3 (2013-05-22)
718720

719721
* Enhancements
720722
* [CLI] Flags `-p` and `-pr` fails if pattern match no files
@@ -766,7 +768,7 @@
766768
* [Kernel] Precedence of `|>` has changed to lower to support constructs like `1..5 |> Enum.to_list`
767769
* [Mix] `mix escriptize` now receives arguments as binaries
768770

769-
# v0.8.2 (2013-04-20)
771+
## v0.8.2 (2013-04-20)
770772

771773
* Enhancements
772774
* [ExUnit] Use ANSI escape codes in CLI output
@@ -806,7 +808,7 @@
806808
unquote(Macro.escape(x))
807809
end
808810

809-
# v0.8.1 (2013-02-17)
811+
## v0.8.1 (2013-02-17)
810812

811813
* Enhancements
812814
* [ExUnit] Tests can now receive metadata set on setup/teardown callbacks
@@ -833,7 +835,7 @@
833835
* [Kernel] Old `:local.(args)` syntax is deprecated
834836
* [Process] `Process.self` is deprecated in favor `Kernel.self`
835837

836-
# v0.8.0 (2013-01-28)
838+
## v0.8.0 (2013-01-28)
837839

838840
* Enhancements
839841
* [Binary] Support `<< "string" :: utf8 >>` as in Erlang
@@ -875,7 +877,7 @@
875877
* [Mix] `mix iex` is no longer functional, please use `iex -S mix`
876878
* [OptionParser] `:flags` option was deprecated in favor of `:switches` to support many types
877879

878-
# v0.7.2 (2012-12-04)
880+
## v0.7.2 (2012-12-04)
879881

880882
* Enhancements
881883
* [CLI] `--debug-info` is now true by default
@@ -901,7 +903,7 @@
901903
* [Record] Default-based generated functions are deprecated
902904
* [Typespec] Enhancements and deprecations to the `@spec/@callback` and the fun type syntax
903905

904-
# v0.7.1 (2012-11-18)
906+
## v0.7.1 (2012-11-18)
905907

906908
* Enhancements
907909
* [IEx] Only show documented functions and also show docs for default generated functions
@@ -932,7 +934,7 @@
932934
* [Enum] `Enum.times` is deprecated in favor of using ranges
933935
* [System] `halt` moved to `System` module
934936

935-
# v0.7.0 (2012-10-20)
937+
## v0.7.0 (2012-10-20)
936938

937939
* Enhancements
938940
* [Behaviour] Add Behaviour with a simple callback DSL to define callbacks
@@ -981,7 +983,7 @@
981983
* [Kernel] `Erlang.` syntax is deprecated in favor of simply using atoms
982984
* [Module] `Module.read_attribute` and `Module.add_attribute` deprecated in favor of `Module.get_attribute` and `Module.put_attribute` which mimics Dict API
983985

984-
# v0.6.0 (2012-08-01)
986+
## v0.6.0 (2012-08-01)
985987

986988
* Backwards incompatible changes
987989
* [Kernel] Compile files now follow `Elixir-ModuleName` convention to solve issues with Erlang embedded mode. This removes the `__MAIN__` pseudo-variable as modules are now located inside `Elixir` namespace
@@ -1031,6 +1033,6 @@
10311033
* [Regex] Back references are now properly supported
10321034
* [System] Add `System.find_executable`
10331035

1034-
# v0.5.0 (2012-05-24)
1036+
## v0.5.0 (2012-05-24)
10351037

10361038
* First official release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ We appreciate any contribution to Elixir, so check out our [CONTRIBUTING.md](CON
3737

3838
## Important links
3939

40-
* #elixir-lang on freenode IRC
40+
* \#elixir-lang on freenode IRC
4141
* [Website][1]
4242
* [Issue tracker][2]
4343
* [elixir-talk Mailing list (questions)][3]

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Release process
1+
# Release process
22

33
This document simply outlines the release process:
44

0 commit comments

Comments
 (0)