Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 861 Bytes

CHANGELOG.md

File metadata and controls

32 lines (19 loc) · 861 Bytes

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

Added

  • Implement std::ops::Add and std::ops::Sub for Polynomial

Added

  • Implement std::ops::Add and std::ops::Sub for Polynomial

[0.1.1] = 2019-08-17

Added

  • Method documentation with examples
  • Polynomial::from_ints() to allow for creating a Polynomial from a vector of integers
  • Repository, readme, and keyword metadata to Cargo.toml
  • More information to the README.md
  • This changelog

[0.1.0] - 2019-08-16

Added

  • Initial working version, includes a Polynomial that you can add, sub, multiply, get as_string, and evaluate_at.