1# Change Log
2
3The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.
4
5## 2.0.1
6
7### Fixed
8
9* Improve parsing of nested functions
10
11## 2.0.0
12
13No changes since beta2.
14
15## 2.0.0@beta2
16
17### Added
18
19* DsnParser::parseUrl(string $dsn): Url
20* DsnParser::parsePath(string $dsn): Path
21
22## 2.0.0@beta1
23
24Version 2 comes with a new definition was a DSN really is. It supports functions
25and a greater variety of DSN formats.
26
27### Changed
28
29The `Nyholm\Dsn` class has been replaced with `Nyholm\Dsn\DsnParser`. To get a `Dsn`
30object:
31
32```php
33
34// Before
35$dsn = new \Nyholm\DSN('mysql://localhost');
36
37// After
38$dsn = new \Nyholm\Dsn\DsnParser::parse('mysql://localhost');
39```
40
41## 1.0.0
42
43No changes since 0.1.1.
44
45## 0.1.1
46
47Support for PHP 7.3.
48
49## 0.1.0
50
51Initial release.
52