Skip to content

Commit

Permalink
Synced README changes to docs (#692)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Nov 5, 2022
1 parent 884c790 commit 5a49bda
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
28 changes: 22 additions & 6 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,39 @@
# Changelog

## [Unreleased](https://github.com/tj-django/django-clone/tree/HEAD)
## [v4.1.0](https://github.com/tj-django/django-clone/tree/v4.1.0) (2022-11-04)

[Full Changelog](https://github.com/tj-django/django-clone/compare/v4.0.2...HEAD)
[Full Changelog](https://github.com/tj-django/django-clone/compare/v4.0.2...v4.1.0)

**Fixed bugs:**

- \[BUG\] duplicate functional -\> duplicate records [\#672](https://github.com/tj-django/django-clone/issues/672)

## [v4.0.2](https://github.com/tj-django/django-clone/tree/v4.0.2) (2022-11-01)

[Full Changelog](https://github.com/tj-django/django-clone/compare/v4.0.1...v4.0.2)

**Closed issues:**

- Dependency Dashboard [\#198](https://github.com/tj-django/django-clone/issues/198)

**Merged pull requests:**

- Updated docs [\#688](https://github.com/tj-django/django-clone/pull/688) ([github-actions[bot]](https://github.com/apps/github-actions))
- Fix cache path issue for multiple platforms [\#687](https://github.com/tj-django/django-clone/pull/687) ([yuekui](https://github.com/yuekui))
- Updated README.md [\#686](https://github.com/tj-django/django-clone/pull/686) ([jackton1](https://github.com/jackton1))
- Updated README.md [\#685](https://github.com/tj-django/django-clone/pull/685) ([jackton1](https://github.com/jackton1))
- docs: add yuekui as a contributor for doc [\#684](https://github.com/tj-django/django-clone/pull/684) ([allcontributors[bot]](https://github.com/apps/allcontributors))
- Add Python 3.11 in testing and refine uploading Codecov reports [\#683](https://github.com/tj-django/django-clone/pull/683) ([yuekui](https://github.com/yuekui))
- Update document for signals [\#682](https://github.com/tj-django/django-clone/pull/682) ([yuekui](https://github.com/yuekui))
- Updated README.md [\#681](https://github.com/tj-django/django-clone/pull/681) ([jackton1](https://github.com/jackton1))
- Add pre and post clone save signals [\#680](https://github.com/tj-django/django-clone/pull/680) ([yuekui](https://github.com/yuekui))
- Update dependency django to v4.1.3 [\#679](https://github.com/tj-django/django-clone/pull/679) ([renovate[bot]](https://github.com/apps/renovate))
- Updated docs [\#678](https://github.com/tj-django/django-clone/pull/678) ([github-actions[bot]](https://github.com/apps/github-actions))
- Upgraded v4.0.1 → v4.0.2 [\#677](https://github.com/tj-django/django-clone/pull/677) ([jackton1](https://github.com/jackton1))
- chore: fix warnings [\#676](https://github.com/tj-django/django-clone/pull/676) ([jackton1](https://github.com/jackton1))

## [v4.0.2](https://github.com/tj-django/django-clone/tree/v4.0.2) (2022-11-01)

[Full Changelog](https://github.com/tj-django/django-clone/compare/v4.0.1...v4.0.2)

**Merged pull requests:**

- Update dependency pytz to v2022.6 [\#675](https://github.com/tj-django/django-clone/pull/675) ([renovate[bot]](https://github.com/apps/renovate))
- \[pre-commit.ci\] pre-commit autoupdate [\#674](https://github.com/tj-django/django-clone/pull/674) ([pre-commit-ci[bot]](https://github.com/apps/pre-commit-ci))
- chore: remove unused code block [\#673](https://github.com/tj-django/django-clone/pull/673) ([jackton1](https://github.com/jackton1))
Expand Down
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ This solves the problem introduced by using `instance.pk = None` and `instance.s
* More control over how a model instance should be duplicated
* Multi Database support i.e Create duplicates on one or more databases.
* Restrict fields used for creating a duplicate instance.
* Detects unique fields and naively adds a suffix (`copy {count}`) to each new instance for supported fields only.
* Optionally differentiate between a duplicate instance and the original by appending a **copy** suffix.
* Detects unique fields and naively adds a suffix `copy {count}` to each duplicate instance (for supported fields only).
* Optionally differentiate between a duplicate instance and the original by appending a **copy** suffix to non unique fields (for supported fields only).

## Table of Contents

Expand Down

0 comments on commit 5a49bda

Please sign in to comment.