argtable / argtable3

A single-file, ANSI C, command-line parsing library that parses GNU-style command-line options.
http://www.argtable.org
Other
372 stars 65 forks source link

When to release the new version? #60

Closed xiaoxiang781216 closed 3 years ago

xiaoxiang781216 commented 3 years ago

This patch is important for NuttX(https://github.com/apache/incubator-nuttx-apps/pull/559):

commit 01ba528135afc14c9c407b541ab320d01bc17c9b
Author: Tom G. Huang <tomghuang@gmail.com>
Date:   Sat Dec 12 23:33:43 2020 -0800

    feat: Switch to FreeBSD getopt library

    Switching to FreeBSD getopt library can resolve two issues:
      1. FreeBSD getopt always uses the 2-Clause BSD, which is compatible
         to GPL. (Although NetBSD has switched to the 2-Clause BSD in
         2008.)
      2. FreeBSD getopt_long provides getopt_long_only, which is critical
         for developers who want to follow the command-line syntax
         convention, which uses a single '-' character for long options.

    resolves: #54 #56

@homghuang do you have plan to release a new version in the near furture?

tomghuang commented 3 years ago

Hi @xiaoxiang781216 , yes, I do plan to release 3.2.0 this month. After checking the comments in NuttX, I will try my best to merge your pull request first, and then announce the new release. Thanks.

xiaoxiang781216 commented 3 years ago

Thanks.