<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/python-slugify.git, branch ci</title>
<subtitle>github.com: un33k/python-slugify.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/python-slugify.git/'/>
<entry>
<title>Add cmdLine option</title>
<updated>2022-04-27T16:08:35+00:00</updated>
<author>
<name>Val Neekman (AvidCoder)</name>
<email>un33kvu@gmail.com</email>
</author>
<published>2022-04-27T16:08:35+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/python-slugify.git/commit/?id=3f1a0fe7c5775a72141163ccdd593272e512898c'/>
<id>3f1a0fe7c5775a72141163ccdd593272e512898c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove type hinting (#113)</title>
<updated>2022-02-26T18:55:55+00:00</updated>
<author>
<name>Reza Moradi</name>
<email>reza.moradi@oneflow.com</email>
</author>
<published>2022-02-26T18:55:55+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/python-slugify.git/commit/?id=0bf1b8761f695e5ae14d9c439a05b151b4a1093d'/>
<id>0bf1b8761f695e5ae14d9c439a05b151b4a1093d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>allow unicode (#111)</title>
<updated>2022-02-22T19:05:08+00:00</updated>
<author>
<name>Reza Moradi</name>
<email>mrezzamoradi@gmail.com</email>
</author>
<published>2022-02-22T19:05:08+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/python-slugify.git/commit/?id=d968ca7419e6f4e40685888c56d03bea50fd39d7'/>
<id>d968ca7419e6f4e40685888c56d03bea50fd39d7</id>
<content type='text'>
* initial commit to allow unicode

* update version and changelog

* add the flag to the CLI

* update README.md</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* initial commit to allow unicode

* update version and changelog

* add the flag to the CLI

* update README.md</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' into ci</title>
<updated>2022-02-16T22:47:20+00:00</updated>
<author>
<name>Val Neekman (AvidCoder)</name>
<email>un33kvu@gmail.com</email>
</author>
<published>2022-02-16T22:47:20+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/python-slugify.git/commit/?id=07b87da81140cf51e4a585e43d4fe9113f4c2ad5'/>
<id>07b87da81140cf51e4a585e43d4fe9113f4c2ad5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>regex: allow=&gt;disallow</title>
<updated>2022-02-16T22:46:24+00:00</updated>
<author>
<name>Val Neekman (AvidCoder)</name>
<email>un33kvu@gmail.com</email>
</author>
<published>2022-02-16T22:46:24+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/python-slugify.git/commit/?id=c096bcdd76b0ef216716eccef5b19839266e1372'/>
<id>c096bcdd76b0ef216716eccef5b19839266e1372</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>regex_patter to disallow</title>
<updated>2022-02-16T22:41:14+00:00</updated>
<author>
<name>Val Neekman (AvidCoder)</name>
<email>un33kvu@gmail.com</email>
</author>
<published>2022-02-16T22:41:14+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/python-slugify.git/commit/?id=d8c9d8a1220743f28f98de60a3eed9cbae30c624'/>
<id>d8c9d8a1220743f28f98de60a3eed9cbae30c624</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix misleading pattern name and documentation (#109)</title>
<updated>2022-02-16T22:36:00+00:00</updated>
<author>
<name>Reza Moradi</name>
<email>mrezzamoradi@gmail.com</email>
</author>
<published>2022-02-16T22:36:00+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/python-slugify.git/commit/?id=dce218991ddf16d916501fb6f72980f9ca0c892a'/>
<id>dce218991ddf16d916501fb6f72980f9ca0c892a</id>
<content type='text'>
* Add better typing for slugify.slugify

Currently, mypy understands the type as `Iterable[str]`, which doesn't match what should actually be passed in, which is `Iterable[Iterable[str]]` or, ideally, `Iterable[Tuple[str, str]]`

* whitespace around =

* fix misleading pattern name and documentation

* fix README.md and cli doc as well

Co-authored-by: Fahrzin Hemmati &lt;fahhem@users.noreply.github.com&gt;
Co-authored-by: Val Neekman (AvidCoder) &lt;un33kvu@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add better typing for slugify.slugify

Currently, mypy understands the type as `Iterable[str]`, which doesn't match what should actually be passed in, which is `Iterable[Iterable[str]]` or, ideally, `Iterable[Tuple[str, str]]`

* whitespace around =

* fix misleading pattern name and documentation

* fix README.md and cli doc as well

Co-authored-by: Fahrzin Hemmati &lt;fahhem@users.noreply.github.com&gt;
Co-authored-by: Val Neekman (AvidCoder) &lt;un33kvu@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>add staging to ci</title>
<updated>2022-02-16T22:26:48+00:00</updated>
<author>
<name>Val Neekman (AvidCoder)</name>
<email>un33kvu@gmail.com</email>
</author>
<published>2022-02-16T22:26:48+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/python-slugify.git/commit/?id=b2aaccd0b0e8ac4780ff29221d7d0fe915aa3f0d'/>
<id>b2aaccd0b0e8ac4780ff29221d7d0fe915aa3f0d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add github action, cleanup</title>
<updated>2022-02-16T22:20:50+00:00</updated>
<author>
<name>Val Neekman (AvidCoder)</name>
<email>un33kvu@gmail.com</email>
</author>
<published>2022-02-16T22:20:50+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/python-slugify.git/commit/?id=86d76eead5430ec9b36b178dc0f3cb9b8ec20127'/>
<id>86d76eead5430ec9b36b178dc0f3cb9b8ec20127</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'sandbox' into ci</title>
<updated>2022-02-16T22:14:21+00:00</updated>
<author>
<name>Val Neekman (AvidCoder)</name>
<email>un33kvu@gmail.com</email>
</author>
<published>2022-02-16T22:14:21+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/python-slugify.git/commit/?id=401487e4e42d5b7d624fa9fe094dd5ffb9431a2c'/>
<id>401487e4e42d5b7d624fa9fe094dd5ffb9431a2c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
