my fork of dmp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# CHANGELOG.md

## 0.5.0
Features:

    - `diff_x_index( .. )` API contributed by @acarl005

Fix:

    - Fix for [Issue](https://github.com/AnubhabB/diff-match-patch-rs/issues/14) by @aschamp-figma

## 0.4.1
Minor performance & cleanup to Diff:

    - the techniques to attain performance gains in `v0.4.0` now applied across the entire diff flow.
    - some cleanups and simplification

## 0.4.0
Performance:

    - Non-algorithmic improvements to `Diff` implementation resulting in `~41%` improvements over previous benchmarks. Experiments: https://blog.anubhab.me/tech/optimizing-diff-match-patch/

## 0.3.2
Fix:

    - Minor fix for [Issue](https://github.com/AnubhabB/diff-match-patch-rs/issues/7)

## 0.3.1
Fix:

    - Fixing order of Ops definition [Issue](https://github.com/AnubhabB/diff-match-patch-rs/issues/5)

## 0.3.0
Breaking Change:

    - the `match_main` API now supports `Efficient` and `Compat` modes. The call to `match_main` is now `match_main::<Efficient>` or `match_main::<Compat>` depending on your use-case

## 0.2.1
Fix:

    - fixed bug in optional dependency `chrono` based on target `wasm32-unknown-unknown`

## 0.2.0
Features:

    - stabilizing APIs & coming out of beta
    - removes dependency burden on `chrono` for non-wasm targets - minor performance improvements for non-wasm targets
    - tested and added more targets

Fix:

    - Fixes a panic [Issue](https://github.com/AnubhabB/diff-match-patch-rs/issues/2)

General:

    - elaborate compatibility tests with python, go and js libs. [Here](https://github.com/AnubhabB/diff-match-patch-rs-bench)