Skip to content

Commit

Permalink
Update README.md and ChangeLog.md
Browse files Browse the repository at this point in the history
  • Loading branch information
crowdagger committed Jul 29, 2023
1 parent 08b37a9 commit 9986ab8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 23 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
ChangeLog
==========

1.1.0 (2023-07-29)
======================
* Fix LaTeX escaping (hce)
* Update dependencies

1.0.0 (2020-02-11)
---------------------
* French formatter now also specifies narrow and en breaking spaces for LaTeX instead of trusting it to use the good one
Expand Down
15 changes: 0 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
[![Travis status](https://img.shields.io/travis/lise-henry/crowbook-text-processing.svg)](https://travis-ci.org/lise-henry/crowbook-text-processing)

[See the full library documentation on Docs.rs.](https://docs.rs/crowbook-text-processing)

# crowbook-text-processing

Provides some utilities functions for escaping text (to HTML or
LaTeX) and formatting it according to typographic rules (smart
quotes, ellipsis, french rules for non-breaking spaces).
Expand Down Expand Up @@ -54,17 +50,6 @@ let french = FrenchFormatter::new();
println!("for text: {}", french.format(s));
println!("for LaTeX: {}", escape::tex(french.format_tex(s)));
```
## Requirements

* `rustc >= 1.9.0`

## Semantic versioning

While not yet at version `1.0`, this crates tries to follows semantic
versioning in the following way:

* an increase of `x` in `0.x.y` means breaking changes.
* an increase of `y` in `0.x.y` means non-breaking changes.

## License

Expand Down
8 changes: 0 additions & 8 deletions src/lib/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,6 @@
//! println!("for LaTeX: {}", escape::tex(french.format_tex(s)));
//! ```
//!
//! # Semantic versioning
//!
//! While not yet at version `1.0`, this crates tries to follows semantic
//! versioning in the following way:
//!
//! * an increase of `x` in `0.x.y` means breaking changes.
//! * an increase of `y` in `0.x.y` means non-breaking changes.
//!
//! # License
//!
//! This is free software, published under the [Mozilla Public License,
Expand Down

0 comments on commit 9986ab8

Please sign in to comment.