From cd64009260d24a90a81492fe44d76120aea1e110 Mon Sep 17 00:00:00 2001 From: Qingyun Wu Date: Thu, 5 Sep 2024 10:58:25 -0700 Subject: [PATCH 1/7] 0.3.0 --- README.md | 17 +++++++++++++---- autogen/version.py | 2 +- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 649897db8ae6..a9d8bc4d8093 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -[![PyPI version](https://badge.fury.io/py/pyautogen.svg)](https://badge.fury.io/py/pyautogen) +[![PyPI version](https://badge.fury.io/py/autogen.svg)](https://badge.fury.io/py/autogen) [![Build](https://github.com/autogen-ai/autogen/actions/workflows/python-package.yml/badge.svg)](https://github.com/autogen-ai/autogen/actions/workflows/python-package.yml) ![Python Version](https://img.shields.io/badge/3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue) -[![Downloads](https://static.pepy.tech/badge/pyautogen/month)](https://pepy.tech/project/pyautogen) + [![Discord](https://img.shields.io/discord/1153072414184452236?logo=discord&style=flat)](https://discord.gg/pAbnFJrkgZ) [![Twitter](https://img.shields.io/twitter/url/https/twitter.com/cloudposse.svg?style=social&label=Follow%20%40Chi_Wang_)](https://x.com/Chi_Wang_) @@ -15,6 +15,15 @@

--> +:fire: Sep 06, 2024: AutoGen now available as `autogen` on PyPI! We're excited to announce a more convenient package name for AutoGen: Starting with version 0.3.0, you can now install AutoGen using: +``` +pip install autogen +``` +We extend our sincere gratitude to Simon Mackenzie for generously transferring the `autogen` package name to us. + +**Note:** The previous package name `pyautogen` will remain valid for a transitional period. However, we encourage users to switch to the new, more intuitive `autogen` package name, as `pyautogen` will eventually be deprecated. + + :fire: Aug 24, 2024: A new organization [autogen-ai](https://github.com/autogen-ai) is created to host the development of AutoGen and related projects with open governance. We invite collaborators from all organizations and individuals. :tada: May 29, 2024: DeepLearning.ai launched a new short course [AI Agentic Design Patterns with AutoGen](https://www.deeplearning.ai/short-courses/ai-agentic-design-patterns-with-autogen), made in collaboration with Microsoft and Penn State University, and taught by AutoGen creators [Chi Wang](https://github.com/sonichi) and [Qingyun Wu](https://github.com/qingyun-wu). @@ -117,14 +126,14 @@ Find detailed instructions for users [here](https://autogen-ai.github.io/autogen AutoGen requires **Python version >= 3.8, < 3.13**. It can be installed from pip: ```bash -pip install pyautogen +pip install autogen ``` Minimal dependencies are installed without extra options. You can install extra options based on the feature you need. Find more options in [Installation](https://autogen-ai.github.io/autogen/docs/Installation#option-2-install-autogen-locally-using-virtual-environment). diff --git a/autogen/version.py b/autogen/version.py index 6cb97ca84ae9..91b26580a39f 100644 --- a/autogen/version.py +++ b/autogen/version.py @@ -4,4 +4,4 @@ # # Portions derived from https://github.com/microsoft/autogen are under the MIT License. # SPDX-License-Identifier: MIT -__version__ = "0.3.0b4" +__version__ = "0.3.0" From f38af9af874914d62a7629f9f5ca109d1fb4d370 Mon Sep 17 00:00:00 2001 From: Qingyun Wu Date: Thu, 5 Sep 2024 11:31:24 -0700 Subject: [PATCH 2/7] remove badge --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index a9d8bc4d8093..e7a7e90b6028 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,6 @@ [![PyPI version](https://badge.fury.io/py/autogen.svg)](https://badge.fury.io/py/autogen) [![Build](https://github.com/autogen-ai/autogen/actions/workflows/python-package.yml/badge.svg)](https://github.com/autogen-ai/autogen/actions/workflows/python-package.yml) ![Python Version](https://img.shields.io/badge/3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue) - [![Discord](https://img.shields.io/discord/1153072414184452236?logo=discord&style=flat)](https://discord.gg/pAbnFJrkgZ) [![Twitter](https://img.shields.io/twitter/url/https/twitter.com/cloudposse.svg?style=social&label=Follow%20%40Chi_Wang_)](https://x.com/Chi_Wang_) From 87fd66a2388092811a6fc8691a97af23038ca9b5 Mon Sep 17 00:00:00 2001 From: Qingyun Wu Date: Thu, 5 Sep 2024 12:03:42 -0700 Subject: [PATCH 3/7] license --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e7a7e90b6028..da3a0b166b95 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@

--> -:fire: Sep 06, 2024: AutoGen now available as `autogen` on PyPI! We're excited to announce a more convenient package name for AutoGen: Starting with version 0.3.0, you can now install AutoGen using: +:fire: :fire: Sep 06, 2024: AutoGen now available as `autogen` on PyPI! We're excited to announce a more convenient package name for AutoGen: Starting with version 0.3.0, you can now install AutoGen using: ``` pip install autogen ``` @@ -22,6 +22,8 @@ We extend our sincere gratitude to Simon Mackenzie for generously transferring t **Note:** The previous package name `pyautogen` will remain valid for a transitional period. However, we encourage users to switch to the new, more intuitive `autogen` package name, as `pyautogen` will eventually be deprecated. +📄 **License Change** +With this new release and package name, we are officially switching to the Apache 2.0 license. This enhances our commitment to open-source collaboration while providing additional protections for contributors and users alike. :fire: Aug 24, 2024: A new organization [autogen-ai](https://github.com/autogen-ai) is created to host the development of AutoGen and related projects with open governance. We invite collaborators from all organizations and individuals. From ce45aebf530f6595f981e06c58370af42e1f1df1 Mon Sep 17 00:00:00 2001 From: Qingyun Wu Date: Thu, 5 Sep 2024 12:05:03 -0700 Subject: [PATCH 4/7] wording --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index da3a0b166b95..c938cfcbda12 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ We extend our sincere gratitude to Simon Mackenzie for generously transferring t **Note:** The previous package name `pyautogen` will remain valid for a transitional period. However, we encourage users to switch to the new, more intuitive `autogen` package name, as `pyautogen` will eventually be deprecated. -📄 **License Change** +📄 **License Change:** With this new release and package name, we are officially switching to the Apache 2.0 license. This enhances our commitment to open-source collaboration while providing additional protections for contributors and users alike. :fire: Aug 24, 2024: A new organization [autogen-ai](https://github.com/autogen-ai) is created to host the development of AutoGen and related projects with open governance. We invite collaborators from all organizations and individuals. From 690c84da89dfa9bb412df1279c9aadd8204427c0 Mon Sep 17 00:00:00 2001 From: Qingyun Wu Date: Thu, 5 Sep 2024 12:05:45 -0700 Subject: [PATCH 5/7] wording --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c938cfcbda12..5417b97a5ef0 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@

--> -:fire: :fire: Sep 06, 2024: AutoGen now available as `autogen` on PyPI! We're excited to announce a more convenient package name for AutoGen: Starting with version 0.3.0, you can now install AutoGen using: +:fire: :tada: Sep 06, 2024: AutoGen now available as `autogen` on PyPI! We're excited to announce a more convenient package name for AutoGen: Starting with version 0.3.0, you can now install AutoGen using: ``` pip install autogen ``` From 5f85488b1b1ab6ddf6db38a297ded359030d96f9 Mon Sep 17 00:00:00 2001 From: Qingyun Wu Date: Thu, 5 Sep 2024 12:09:07 -0700 Subject: [PATCH 6/7] add link to the title --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5417b97a5ef0..f14dfe8d2b1d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,8 @@ [![NuGet version](https://badge.fury.io/nu/AutoGen.Core.svg)](https://badge.fury.io/nu/AutoGen.Core) -# AutoGen +# [AutoGen](https://github.com/autogen-ai/autogen) + [📚 Cite paper](#related-papers).