Skip to content

Commit 077106d

Browse files
authored
Prepare 2.0.0 release (#17056)
1 parent 888db1a commit 077106d

File tree

7 files changed

+10
-269
lines changed

7 files changed

+10
-269
lines changed

src/lightning/app/CHANGELOG.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,20 @@ 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

77

8-
## [UnReleased] - 2023-MM-DD
8+
## [2.0.0] - 2023-03-15
99

1010
### Added
1111

1212
- Added `--zip` option to the `lightning cp` command to copy content from the Cloud Platform Filesystem as a zipfile
1313

14-
1514
### Changed
1615

1716
- Changed minimum supported version of `rich` from `10.14.0` to `12.13.0` ([#16798](https://github.com/Lightning-AI/lightning/pull/16798))
1817

19-
20-
21-
### Deprecated
22-
23-
-
24-
25-
2618
### Removed
2719

2820
- Removed support for Python 3.7 ([#16579](https://github.com/Lightning-AI/lightning/pull/16579))
2921

30-
### Fixed
31-
32-
-
33-
3422

3523
## [1.9.4] - 2023-03-01
3624

src/lightning/fabric/CHANGELOG.md

Lines changed: 1 addition & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -5,73 +5,42 @@ 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

77

8-
## [UnReleased] - 2023-MM-DD
8+
## [2.0.0] - 2023-03-15
99

1010
### Added
1111

1212
- Added `Fabric.all_reduce` ([#16459](https://github.com/Lightning-AI/lightning/pull/16459))
13-
14-
1513
- Added support for saving and loading DeepSpeed checkpoints through `Fabric.save/load()` ([#16452](https://github.com/Lightning-AI/lightning/pull/16452))
16-
17-
1814
- Added support for automatically calling `set_epoch` on the `dataloader.batch_sampler.sampler` ([#16841](https://github.com/Lightning-AI/lightning/pull/16841))
19-
20-
2115
- Added support for writing logs to remote file systems with the `CSVLogger` ([#16880](https://github.com/Lightning-AI/lightning/pull/16880))
22-
23-
2416
- Added support for frozen dataclasses in the optimizer state ([#16656](https://github.com/Lightning-AI/lightning/pull/16656))
25-
26-
2717
- Added `lightning.fabric.is_wrapped` to check whether a module, optimizer, or dataloader was already wrapped by Fabric ([#16953](https://github.com/Lightning-AI/lightning/pull/16953))
2818

29-
3019
### Changed
3120

3221
- Fabric now chooses `accelerator="auto", strategy="auto", devices="auto"` as defaults ([#16842](https://github.com/Lightning-AI/lightning/pull/16842))
33-
34-
3522
- Checkpoint saving and loading redesign ([#16434](https://github.com/Lightning-AI/lightning/pull/16434))
3623
* Changed the method signatrue of `Fabric.save` and `Fabric.load`
3724
* Changed the method signature of `Strategy.save_checkpoint` and `Fabric.load_checkpoint`
3825
* `Fabric.save` accepts a state that can contain model and optimizer references
3926
* `Fabric.load` can now load state in-place onto models and optimizers
4027
* `Fabric.load` returns a dictionary of objects that weren't loaded into the state
4128
* `Strategy.save_checkpoint` and `Fabric.load_checkpoint` are now responsible for accessing the state of the model and optimizers
42-
43-
4429
- `DataParallelStrategy.get_module_state_dict()` and `DDPStrategy.get_module_state_dict()` now correctly extracts the state dict without keys prefixed with 'module' ([#16487](https://github.com/Lightning-AI/lightning/pull/16487))
45-
4630
- "Native" suffix removal ([#16490](https://github.com/Lightning-AI/lightning/pull/16490))
4731
* `strategy="fsdp_full_shard_offload"` is now `strategy="fsdp_cpu_offload"`
4832
* `lightning.fabric.plugins.precision.native_amp` is now `lightning.fabric.plugins.precision.amp`
49-
50-
5133
- Enabled all shorthand strategy names that can be supported in the CLI ([#16485](https://github.com/Lightning-AI/lightning/pull/16485))
52-
5334
- Renamed `strategy='tpu_spawn'` to `strategy='xla'` and `strategy='tpu_spawn_debug'` to `strategy='xla_debug'` ([#16781](https://github.com/Lightning-AI/lightning/pull/16781))
54-
55-
5635
- Changed arguments for precision settings (from [64|32|16|bf16] to ["64-true"|"32-true"|"16-mixed"|"bf16-mixed"]) ([#16767](https://github.com/Lightning-AI/lightning/pull/16767))
57-
5836
- The selection `Fabric(strategy="ddp_spawn", ...)` no longer falls back to "ddp" when a cluster environment gets detected ([#16780](https://github.com/Lightning-AI/lightning/pull/16780))
59-
6037
- Renamed `setup_dataloaders(replace_sampler=...)` to `setup_dataloaders(use_distributed_sampler=...)` ([#16829](https://github.com/Lightning-AI/lightning/pull/16829))
6138

62-
### Deprecated
63-
64-
-
65-
66-
6739
### Removed
6840

6941
- Removed support for PyTorch 1.10 ([#16492](https://github.com/Lightning-AI/lightning/pull/16492))
70-
71-
7242
- Removed support for Python 3.7 ([#16579](https://github.com/Lightning-AI/lightning/pull/16579))
7343

74-
7544
### Fixed
7645

7746
- Fixed issue where the wrapped dataloader `iter()` would be called twice ([#16841](https://github.com/Lightning-AI/lightning/pull/16841))

0 commit comments

Comments
 (0)