Skip to content

Releases: egasimov/aznum2words

v1.0.0

29 Jan 13:39
451bafc
Compare
Choose a tag to compare

AzNum2Words SDK v1.0.0

Release Notes

The AzNum2Words SDK v1.0.0 is a Go library that provides a convenient way to convert numbers to words in the Azerbaijani language.

What's New

  • Conversion of positive and negative numbers to words
  • Support for decimal numbers and fractional parts
  • Support for both whole and fractional parts in words
  • Support for various number formats and ranges

Installation

To install the AzNum2Words SDK v1.0.0, use the following command:

go get github.com/egasimov/aznum2words

Usage

To use the AzNum2Words SDK v1.0.0, import the package and call the SpellNumber function. Here's an example:

package main

import (
	"fmt"
	"github.com/egasimov/aznum2words"
)

func main() {
	result1, _ := aznum2words.SpellNumber("-95412")
	result2, _ := aznum2words.SpellNumber("-2.7021")
	result3, _ := aznum2words.SpellNumber("5611113210")

	fmt.Println(result1)
	fmt.Println(result2)
	fmt.Println(result3)
}

License

The AzNum2Words SDK v1.0.0 is released under the MIT License. For more details, please see the LICENSE file.

v0.2.0

27 Mar 14:46
Compare
Choose a tag to compare

Release notes:

  • [Fix] Fixed the bug in the library for edge cases
  • [Feature] Run project as web app | Introduce Web API

Full Changelog: v0.1.1...v1.0.0

v0.1.1

03 Mar 19:57
Compare
Choose a tag to compare

Release notes:

  • Fixed the bug in the aznum2words-cli during installation

Full Changelog: v0.1.0...v0.1.1

v0.1.0

25 Feb 13:39
Compare
Choose a tag to compare

Release notes:

  • Add CLI-app feature, namely aznum2words-cli
  • Enhance the API doc
  • Improve error handling
  • Fixing minor bugs

Full Changelog: v0.0.2-alpha...v0.1.0

v0.0.2-alpha release

22 Feb 13:50
Compare
Choose a tag to compare
v0.0.2-alpha release Pre-release
Pre-release

Release notes:

  • Fix module name

v0.0.1-alpha

22 Feb 13:33
Compare
Choose a tag to compare
v0.0.1-alpha Pre-release
Pre-release

Release notes:

  • Add functionality for converting numbers into Azerbaijani language.
    -- floating-point, integer number supported #4 #3
    -- positive and negative number supported #1 #2
  • Add LICENSE