Skip to content

Commit b816c98

Browse files
committed
Fix formatting in .md files
1 parent 23f0ff8 commit b816c98

File tree

3 files changed

+35
-33
lines changed

3 files changed

+35
-33
lines changed

CHANGELOG.md

+33-31
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
@@ -23,7 +25,7 @@
2325
* [Access] `Kernel.access/2` no longer exists and the `Access` protocol now uses `get/2` instead of `access/2`
2426
* [Kernel] Retrieving docs as `module.__info__(:docs)` is deprecated, instead `Code.get_docs/2` must be used
2527

26-
# v0.13.3 (2014-05-24)
28+
## v0.13.3 (2014-05-24)
2729

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

74-
# v0.13.2 (2014-05-11)
76+
## v0.13.2 (2014-05-11)
7577

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

126-
# v0.13.1 (2014-04-27)
128+
## v0.13.1 (2014-04-27)
127129

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

152-
# v0.13.0 (2014-04-20)
154+
## v0.13.0 (2014-04-20)
153155

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

203-
# v0.12.5 (2014-03-09)
205+
## v0.12.5 (2014-03-09)
204206

205207
* Bug fixes
206208
* [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
@@ -218,7 +220,7 @@
218220
* Backwards incompatible changes
219221
* [Mix] Remove `MIX_GIT_FORCE_HTTPS` as Git itself already provides mechanisms for doing so
220222

221-
# v0.12.4 (2014-02-12)
223+
## v0.12.4 (2014-02-12)
222224

223225
* Enhancements
224226
* [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
@@ -232,7 +234,7 @@
232234
* [ExUnit] `CaptureIO` returns an empty string instead of nil when there is no capture
233235
* [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
234236

235-
# v0.12.3 (2014-02-02)
237+
## v0.12.3 (2014-02-02)
236238

237239
* Enhancements
238240
* [Kernel] Warnings now are explicitly tagged with "warning:" in messages
@@ -265,7 +267,7 @@
265267
* [Range] `Range` is no longer a record, instead use `first .. last` if you need pattern matching
266268
* [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
267269

268-
# v0.12.2 (2014-01-15)
270+
## v0.12.2 (2014-01-15)
269271

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

297-
# v0.12.1 (2014-01-04)
299+
## v0.12.1 (2014-01-04)
298300

299301
* Enhancements
300302
* [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`
@@ -318,7 +320,7 @@
318320
* [GenServer] GenServer now stops on unknown call/cast requests
319321
* [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.
320322

321-
# v0.12.0 (2013-12-15)
323+
## v0.12.0 (2013-12-15)
322324

323325
* Enhancements
324326
* [Exception] Allow `exception/1` to be overridden and promote it as the main mechanism to customize exceptions
@@ -355,7 +357,7 @@
355357
* [Stream] The `Stream.Lazy` structure has changed to accumulate functions and accumulators as we go (its inspected representation has also changed)
356358
* [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`
357359

358-
# v0.11.2 (2013-11-14)
360+
## v0.11.2 (2013-11-14)
359361

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

367-
# v0.11.1 (2013-11-07)
369+
## v0.11.1 (2013-11-07)
368370

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

385-
# v0.11.0 (2013-11-02)
387+
## v0.11.0 (2013-11-02)
386388

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

432-
# v0.10.3 (2013-10-02)
434+
## v0.10.3 (2013-10-02)
433435

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

467-
# v0.10.2 (2013-09-03)
469+
## v0.10.2 (2013-09-03)
468470

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

530-
# v0.10.1 (2013-08-03)
532+
## v0.10.1 (2013-08-03)
531533

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

580-
# v0.10.0 (2013-07-15)
582+
## v0.10.0 (2013-07-15)
581583

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

624-
# v0.9.3 (2013-06-23)
626+
## v0.9.3 (2013-06-23)
625627

626628
* Enhancements
627629
* [File] Add `File.chgrp`, `File.chmod` and `File.chown`
@@ -659,7 +661,7 @@
659661
* [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
660662
* [Mix] No longer support beam files on `mix local`
661663

662-
# v0.9.2 (2013-06-13)
664+
## v0.9.2 (2013-06-13)
663665

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

687-
# v0.9.1 (2013-05-30)
689+
## v0.9.1 (2013-05-30)
688690

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

703-
# v0.9.0 (2013-05-23)
705+
## v0.9.0 (2013-05-23)
704706

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

716-
# v0.8.3 (2013-05-22)
718+
## v0.8.3 (2013-05-22)
717719

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

768-
# v0.8.2 (2013-04-20)
770+
## v0.8.2 (2013-04-20)
769771

770772
* Enhancements
771773
* [ExUnit] Use ANSI escape codes in CLI output
@@ -805,7 +807,7 @@
805807
unquote(Macro.escape(x))
806808
end
807809

808-
# v0.8.1 (2013-02-17)
810+
## v0.8.1 (2013-02-17)
809811

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

835-
# v0.8.0 (2013-01-28)
837+
## v0.8.0 (2013-01-28)
836838

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

877-
# v0.7.2 (2012-12-04)
879+
## v0.7.2 (2012-12-04)
878880

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

903-
# v0.7.1 (2012-11-18)
905+
## v0.7.1 (2012-11-18)
904906

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

934-
# v0.7.0 (2012-10-20)
936+
## v0.7.0 (2012-10-20)
935937

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

983-
# v0.6.0 (2012-08-01)
985+
## v0.6.0 (2012-08-01)
984986

985987
* Backwards incompatible changes
986988
* [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
@@ -1030,6 +1032,6 @@
10301032
* [Regex] Back references are now properly supported
10311033
* [System] Add `System.find_executable`
10321034

1033-
# v0.5.0 (2012-05-24)
1035+
## v0.5.0 (2012-05-24)
10341036

10351037
* First official release

README.md

+1-1
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

+1-1
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)