public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [Patch] pip-requirements.txt: Update basetools version to 0.1.24
@ 2022-06-29  7:55 Bob Feng
  2022-06-29 15:23 ` [edk2-devel] " Michael Kubacki
  0 siblings, 1 reply; 3+ messages in thread
From: Bob Feng @ 2022-06-29  7:55 UTC (permalink / raw)
  To: devel

Synced the basetools patch from edk2 repo to
edk2-basetools repo.

edk2 sha-1: 59141288716f8917968d4bb96367b7d08fe5ab8a

Update the basetools pip module version
to the latest 0.1.24.

Signed-off-by: Bob Feng <bob.c.feng@intel.com>
---
 pip-requirements.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pip-requirements.txt b/pip-requirements.txt
index 6585df201d..29424b08bd 100644
--- a/pip-requirements.txt
+++ b/pip-requirements.txt
@@ -12,7 +12,7 @@
 # https://www.python.org/dev/peps/pep-0440/#version-specifiers
 ##
 
 edk2-pytool-library==0.11.2
 edk2-pytool-extensions~=0.16.0
-edk2-basetools==0.1.17
+edk2-basetools==0.1.24
 antlr4-python3-runtime==4.7.1
-- 
2.29.1.windows.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [edk2-devel] [Patch] pip-requirements.txt: Update basetools version to 0.1.24
  2022-06-29  7:55 [Patch] pip-requirements.txt: Update basetools version to 0.1.24 Bob Feng
@ 2022-06-29 15:23 ` Michael Kubacki
  2022-06-29 15:54   ` Michael D Kinney
  0 siblings, 1 reply; 3+ messages in thread
From: Michael Kubacki @ 2022-06-29 15:23 UTC (permalink / raw)
  To: devel, bob.c.feng

Acked-by: Michael Kubacki <michael.kubacki@microsoft.com>

On 6/29/2022 3:55 AM, Bob Feng wrote:
> Synced the basetools patch from edk2 repo to
> edk2-basetools repo.
> 
> edk2 sha-1: 59141288716f8917968d4bb96367b7d08fe5ab8a
> 
> Update the basetools pip module version
> to the latest 0.1.24.
> 
> Signed-off-by: Bob Feng <bob.c.feng@intel.com>
> ---
>   pip-requirements.txt | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/pip-requirements.txt b/pip-requirements.txt
> index 6585df201d..29424b08bd 100644
> --- a/pip-requirements.txt
> +++ b/pip-requirements.txt
> @@ -12,7 +12,7 @@
>   # https://www.python.org/dev/peps/pep-0440/#version-specifiers
> 
>   ##
> 
>   
> 
>   edk2-pytool-library==0.11.2
> 
>   edk2-pytool-extensions~=0.16.0
> 
> -edk2-basetools==0.1.17
> 
> +edk2-basetools==0.1.24
> 
>   antlr4-python3-runtime==4.7.1
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [edk2-devel] [Patch] pip-requirements.txt: Update basetools version to 0.1.24
  2022-06-29 15:23 ` [edk2-devel] " Michael Kubacki
@ 2022-06-29 15:54   ` Michael D Kinney
  0 siblings, 0 replies; 3+ messages in thread
From: Michael D Kinney @ 2022-06-29 15:54 UTC (permalink / raw)
  To: devel@edk2.groups.io, mikuback@linux.microsoft.com, Feng, Bob C,
	Kinney, Michael D

Hi Bob,

Can you please add a summary of the BaseTools bugs/features addressed
in the upgrade from 0.1.17 to 0.1.24 to the commit message.

With that update: 

Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>

Thanks,

Mike

> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Michael Kubacki
> Sent: Wednesday, June 29, 2022 8:23 AM
> To: devel@edk2.groups.io; Feng, Bob C <bob.c.feng@intel.com>
> Subject: Re: [edk2-devel] [Patch] pip-requirements.txt: Update basetools version to 0.1.24
> 
> Acked-by: Michael Kubacki <michael.kubacki@microsoft.com>
> 
> On 6/29/2022 3:55 AM, Bob Feng wrote:
> > Synced the basetools patch from edk2 repo to
> > edk2-basetools repo.
> >
> > edk2 sha-1: 59141288716f8917968d4bb96367b7d08fe5ab8a
> >
> > Update the basetools pip module version
> > to the latest 0.1.24.
> >
> > Signed-off-by: Bob Feng <bob.c.feng@intel.com>
> > ---
> >   pip-requirements.txt | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/pip-requirements.txt b/pip-requirements.txt
> > index 6585df201d..29424b08bd 100644
> > --- a/pip-requirements.txt
> > +++ b/pip-requirements.txt
> > @@ -12,7 +12,7 @@
> >   # https://www.python.org/dev/peps/pep-0440/#version-specifiers
> >
> >   ##
> >
> >
> >
> >   edk2-pytool-library==0.11.2
> >
> >   edk2-pytool-extensions~=0.16.0
> >
> > -edk2-basetools==0.1.17
> >
> > +edk2-basetools==0.1.24
> >
> >   antlr4-python3-runtime==4.7.1
> >
> 
> 
> 
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-06-29 15:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-29  7:55 [Patch] pip-requirements.txt: Update basetools version to 0.1.24 Bob Feng
2022-06-29 15:23 ` [edk2-devel] " Michael Kubacki
2022-06-29 15:54   ` Michael D Kinney

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox